-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "sample-react",
"version": "0.0.1",
"description": "Sample React App",
"main": "js/app.js",
"dependencies": {
"es6-promise": "~0.1.1",
"react": "~0.10",
"parse": "^1.2.17",
"react-async": "^0.9.4",
"react-router-component": "^0.19.0",
"react-bootstrap": "^0.10.2",
"jquery": "^2.1.1",
"moment": "^2.8.0"
},
"devDependencies": {
"bower": "^1.3.12",
"browserify": "~2.36.0",
"envify": "~1.2.0",
"reactify": "~0.4.0",
"statics": "~0.1.0",
"uglify-js": "~2.4.13",
"watchify": "^0.10.2",
"jest-cli": "~0.1.5",
"compass": "^0.1.0",
"gulp": "^3.8.5",
"browser-sync": "^1.1.2",
"browserify-shim": "^3.6.0",
"gulp-open": "^0.2.8",
"gulp-changed": "^0.4.0",
"gulp-util": "^2.2.19",
"gulp-compass": "^1.1.9",
"gulp-notify": "^1.4.0",
"gulp-imagemin": "^2.0.0",
"pretty-hrtime": "^0.2.1",
"vinyl-source-stream": "^0.1.1"
},
"scripts": {
"postinstall": "bower install",
"watch-css": "compass watch -c compass.rb",
"watch-js": "STATIC_ROOT=./static watchify ./src/js/app.js -o ./build/app.js -v -d",
"start": "npm run watch-css & npm run watch-js",
"prod-css": "compass compile -e production --force -c compass.rb",
"prod-js": "STATIC_ROOT=./static browserify ./src/js/app.js | uglifyjs -cm > ./build/app.js",
"prod": "npm run prod-js & npm run prod-css",
"collect-static": "collect-static . ./static",
"test": "jest",
"gulp": "gulp"
},
"author": "Remi Santos",
"license": "Apache 2",
"browserify": {
"transform": [
"reactify",
"envify"
]
},
"jest": {
"rootDir": "./js"
}
}