-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.22 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
{
"name": "react-universal-redux-bootstrap-4-example",
"version": "1.0.0",
"engines": {
"node": "4.1.2",
"npm": "3.5.2"
},
"description": "",
"main": "app-server.js",
"dependencies": {
"babel": "^5.8.29",
"babel-core": "^5.8.32",
"babel-loader": "^5.3.2",
"events": "^1.1.0",
"express": "^4.13.3",
"flux": "^2.1.1",
"history": "^1.13.0",
"hogan-express": "^0.5.2",
"lodash": "^3.10.1",
"react": "^15.3.2",
"react-addons-css-transition-group": "^15.3.2",
"react-addons-transition-group": "^15.3.2",
"react-dom": "^15.3.2",
"react-router": "^1.0.1",
"webpack": "^1.12.2"
},
"scripts": {
"start": "npm run production",
"production": "rm -rf public/index.html && NODE_ENV=production webpack -p && NODE_ENV=production node app.js",
"webpack-dev-server": "NODE_ENV=development PORT=8080 webpack-dev-server --content-base public/ --hot --inline --devtool inline-source-map --history-api-fallback",
"development": "cp views/index.html public/index.html && NODE_ENV=development webpack && npm run webpack-dev-server"
},
"author": "",
"license": "ISC",
"devDependencies": {
"react-hot-loader": "^1.3.0",
"webpack-dev-server": "^1.12.1"
}
}