forked from carlosazaustre/universal-js-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "universal-js-boilerplate",
"version": "0.0.1",
"description": "A boilerplate to start universal (isomorphic) web applications",
"main": "./src/app/server/index.js",
"scripts": {
"build": "gulp build",
"start": "nodemon --exec babel-node --stage 0 -- ./src/app/server/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/carlosazaustre/universal-js-boilerplate"
},
"keywords": [
"boilerplate",
"web development",
"frontend",
"javascript",
"es6",
"ecmascript 6",
"react",
"isomorphic"
],
"author": "Carlos Azaustre <[email protected]> (https://carlosazaustre.es/blog)",
"license": "MIT",
"bugs": {
"url": "https://github.com/carlosazaustre/universal-js-boilerplate/issues"
},
"homepage": "https://github.com/carlosazaustre/universal-js-boilerplate",
"dependencies": {
"express": "^4.13.0",
"react": "^0.13.3",
"react-engine": "^1.7.0",
"react-router": "^0.13.3",
"serve-favicon": "^2.3.0"
},
"devDependencies": {
"babel": "^5.6.14",
"babel-eslint": "^3.1.20",
"babel-runtime": "^5.6.15",
"babelify": "^6.1.2",
"browserify": "^10.2.4",
"eslint": "^0.24.0",
"eslint-plugin-react": "^2.6.4",
"esprima-fb": "^15001.1.0-dev-harmony-fb",
"gulp": "^3.9.0",
"gulp-eslint": "^0.15.0",
"gulp-jscs": "^1.6.0",
"gulp-minify-css": "^1.2.0",
"gulp-stylint": "^1.1.3",
"gulp-stylus": "^2.0.5",
"nib": "^1.1.0",
"nodemon": "^1.3.7",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}