-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 921 Bytes
/
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
{
"name": "React-App",
"version": "1.0.0",
"main": "./dist/server.js",
"author": "Gregory Shehet",
"devDependencies": {
"babel": "^5.8.23",
"gulp-autoprefixer": "^3.0.1",
"gulp-concat": "^2.6.0",
"gulp-minify-css": "^1.2.1",
"gulp-stylus": "^2.0.6",
"react-hot-loader": "^1.2.2",
"shelljs": "^0.5.0",
"source-map-support": "^0.3.1"
},
"dependencies": {
"babel-core": "^5.4.7",
"babel-loader": "^5.1.3",
"babel-runtime": "^5.4.7",
"express": "^4.12.4",
"gulp": "^3.9.0",
"node-inspector": "^0.12.3",
"nodemon": "^1.5.0",
"normalize-styl": "^3.0.3",
"react": "^0.13.3",
"react-router": "^0.13.3",
"webpack": "^1.9.10"
},
"scripts": {
"build": "node ./node_modules/gulp/bin/gulp.js build",
"debug": "node ./node_modules/gulp/bin/gulp.js debug",
"postinstall": "npm run build",
"start": "node dist/server.js"
}
}