forked from petehunt/react-server-rendering-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 772 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
{
"name": "react-server-rendering-example",
"version": "0.0.1",
"description": "Quick example of server rendering with React",
"main": "index.js",
"dependencies": {
"express": "~3.4.6",
"react": "http://petehunt.net/react/react-0.5.1.tar.gz"
},
"devDependencies": {
"browserify": "~2.36.0",
"envify": "~0.2.0",
"reactify": "~0.4.0",
"uglifyjs": "~2.3.6",
"watchify": "~0.4.1"
},
"scripts": {
"start": "watchify -o browser-bundle.js -d .",
"build": "NODE_ENV=production browserify . | uglifyjs -cm > browser-bundle.min.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Pete Hunt",
"license": "Apache 2",
"browserify": {
"transform": [
"reactify",
"envify"
]
}
}