-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 792 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "css-ns_react-demo",
"scripts": {
"start": "cp app/index.html dist && node-sass app/index.scss --watch --output dist & watchify -t babelify app/index.js --debug -v -o dist/index.js",
"build": "cp app/index.html dist && node-sass app/index.scss --output dist && NODE_ENV=production browserify -t babelify app/index.js | uglifyjs --compress --mangle > dist/index.js 2> /dev/null"
},
"dependencies": {
"babel-plugin-react-class-display-name": "^0.1.0",
"babelify": "^6.3.0",
"browserify": "^11.2.0",
"node-sass": "^3.3.3",
"react": "^0.14.0",
"react-addons-perf": "^0.14.0",
"react-bootstrap": "^0.27.1",
"react-dom": "^0.14.0",
"uglify-js": "^2.5.0",
"watchify": "^3.4.0"
}
}