-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 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
{
"name": "universal-react-router-express-boiler",
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=production NODE_PATH=$NODE_PATH:./shared node --harmony .",
"dev": "NODE_PATH=$NODE_PATH:./shared node --harmony .",
"build": "webpack --progress --color -p --config webpack.prod.config.js"
},
"dependencies": {
"babel": "^6.5.2",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"express": "^4.14.0",
"history": "^4.3.0",
"object-assign": "^4.1.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-router": "^2.8.1",
"webpack": "^1.13.2"
},
"devDependencies": {
"react-transform-hmr": "^1.0.4",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.0"
}
}