-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 929 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": "ExpressApp1",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"build": "browserify app/main.jsx -o public/app/bundle.js -t [ babelify --presets [ es2015 react ] ]",
"watch": "watchify app/main.jsx -o public/app/bundle.js -t [ babelify --presets [ es2015 react ] ] -v"
},
"description": "ExpressApp1",
"author": {
"name": "Troy Farrell",
"email": ""
},
"dependencies": {
"body-parser": "~1.8.1",
"browserify": "^13.0.0",
"cookie-parser": "~1.3.3",
"debug": "~2.0.0",
"express": "~4.9.0",
"jade": "~1.6.0",
"lodash": "^4.0.1",
"morgan": "~1.3.0",
"react": "^0.14.6",
"react-bootstrap": "^0.28.2",
"react-dom": "^0.14.6",
"serve-favicon": "~2.1.3",
"stylus": "0.42.3"
},
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0"
}
}