-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 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
{
"name": "scaffold",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch:js": "webpack --watch",
"build:js": "webpack",
"css": "node-sass src/scss/main.scss -o dist",
"watch:css": "node-sass src/scss/main.scss -wo dist",
"dev": "npm run watch:js & npm run watch:css & npm run serve & npm start",
"serve": "browser-sync start --proxy 'http://localhost:3000' --files 'dist/*.css, dist/*.js'",
"postinstall": "cp node_modules/normalize.css/normalize.css lib/"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-core": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-preset-react": "^6.16.0",
"body-parser": "^1.15.2",
"browser-sync": "^2.18.2",
"eventemitter3": "^2.0.2",
"express": "^4.14.0",
"jquery": "^3.1.1",
"lodash": "^4.16.6",
"lowdb": "^0.14.0",
"node-sass": "^3.13.0",
"normalize.css": "^5.0.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-router": "^3.0.0",
"shortid": "^2.2.6",
"webpack": "^1.13.3"
}
}