-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
38 lines (38 loc) · 1022 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
36
37
38
{
"name": "react-quickstart",
"version": "0.0.0",
"description": "React project",
"main": "./server.js",
"browser": "./client.js",
"browserify": {
"transform": [
["reactify", {"harmony": true}]
]
},
"dependencies": {
"react": "~0.10.0",
"react-async": "~0.9.1",
"react-router-component": "~0.18.2",
"express": "~4.1.1",
"node-jsx": "~0.10.0",
"superagent": "~0.18.0",
"fibers": "~1.0.1"
},
"devDependencies": {
"reactify": "~0.13.1",
"envify": "~1.2.0",
"browserify": "~3.44.2",
"connect-browserify": "~2.0.1",
"uglify-js": "~2.4.13",
"supervisor": "~0.6.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "supervisor -i node_modules -e js,jsx server.js",
"build": "NODE_ENV=production browserify ./ | uglifyjs -cm 2>/dev/null > ./assets/bundle.js",
"start-prod": "NODE_ENV=production node server.js",
"clean": "rm -f ./assets/bundle.js"
},
"author": "",
"license": "MIT"
}