-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 922 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
{
"name": "react-webapp-template",
"version": "1.0.0",
"description": "",
"main": "www/app.js",
"scripts": {
"build": "ntsc -p ./src && node-sass --include-path node_modules/bourbon-neat/app/assets/stylesheets css/main.scss www/css/main.css",
"postbuild": "browserify -t [ babelify --presets es2015 ] temp/app.js > www/js/bundle.js",
"release": "ntsc -p ./src && browserify -t [ babelify --presets es2015 ] temp/app.js > www/js/bundle.js && uglifyjs www/js/bundle.js --compress --mangle -o www/js/bundle.min.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-preset-es2015": "6.14.0",
"babelify": "7.3.0",
"browserify": "13.0.1",
"node-sass": "^3.11.2",
"ntypescript": "1.201609060105.1",
"uglify-js": "2.7.3"
},
"dependencies": {
"bourbon-neat": "^1.8.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-motion": "^0.4.4"
}
}