-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 879 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
{
"name": "shouldirun",
"version": "0.0.1",
"description": "Should I run? for BART commuters",
"main": "js/app.js",
"dependencies": {
"es6-promise": "~0.1.1",
"react": "~0.10",
"underscore": "^1.6.0",
"xml2js": "^0.4.4"
},
"devDependencies": {
"browserify": "~2.36.0",
"envify": "~1.2.0",
"reactify": "~0.4.0",
"statics": "~0.1.0",
"uglify-js": "~2.4.13",
"watchify": "~0.4.1",
"jest-cli": "~0.1.5"
},
"scripts": {
"start": "STATIC_ROOT=./static watchify -o js/bundle.js -v -d .",
"build": "STATIC_ROOT=./static NODE_ENV=production browserify . | uglifyjs -cm > js/bundle.min.js",
"collect-static": "collect-static . ./static",
"test": "jest"
},
"author": "Roger Goldfinger",
"browserify": {
"transform": [
"reactify",
"envify"
]
},
"jest": {
"rootDir": "./js"
}
}