-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.52 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
{
"name": "express-sample",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"compression": "^1.6.2",
"express": "^4.14.1",
"express-session": "^1.15.1",
"helmet": "^3.4.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"redux": "^3.6.0"
},
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:dev": "webpack-dev-server --config ./webpack/webpack.config.js --inline --content-base public/ --history-api-fallback --open",
"start:prod": "npm run build && node ./dist/server.bundle.js",
"build": "npm run build:client && npm run build:server",
"build:client": "webpack --config ./webpack/webpack.config.js",
"build:server": "webpack --config ./webpack/webpack.server.config.js"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "6.13.2",
"babel-loader": "6.2.4",
"babel-plugin-transform-react-jsx": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015": "6.13.2",
"babel-preset-react": "6.11.1",
"babel-preset-stage-2": "6.13.0",
"babel-register": "6.18.0",
"cross-env": "^3.1.4",
"if-env": "^1.0.0",
"json-loader": "^0.5.4",
"nodemon": "^1.11.0",
"react-hot-loader": "3.0.0-beta.6",
"webpack": "2.1.0-beta.25",
"webpack-dev-middleware": "^1.10.0",
"webpack-dev-server": "2.1.0-beta.0",
"webpack-hot-middleware": "^2.17.0"
}
}