-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 928 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-browserify-template",
"version": "0.0.1",
"description": "Quick boilerplate for browserify and React modules.",
"main": "index.js",
"dependencies": {
"react": "~0.8"
},
"devDependencies": {
"browserify": "~2.36.0",
"envify": "~0.2.0",
"reactify": "~0.4.0",
"statics": "~0.1.0",
"uglifyjs": "~2.3.6",
"watchify": "~0.4.1",
"pouchdb": "*",
"underscore": "*",
"node-uuid": "*",
"bootstrap-browserify": "*"
},
"scripts": {
"start": "STATIC_ROOT=./static watchify -o browser-bundle.js -v -d .",
"build": "STATIC_ROOT=./static NODE_ENV=production browserify . | uglifyjs -cm > browser-bundle.min.js",
"collect-static": "collect-static . ./static",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Pete Hunt",
"license": "Apache 2",
"browserify": {
"transform": [
"reactify",
"envify"
]
}
}