-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 960 Bytes
/
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
{
"name": "react-config-boilerplate",
"version": "1.0.0",
"description": "A configurable boilerplate for redux projects.",
"main": "src/index.js",
"scripts": {
"build": "webpack --verbose --colors --display-error-details --config webpack/prod.config.js",
"dev": "webpack-dev-server --config webpack/dev.config.js",
"postinstall": "npm run build",
"prod": "node server/entry.js",
"test": "npm run test"
},
"author": "jerekshoe",
"license": "MIT",
"dependencies": {
"babel-core": "^6.13.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-1": "^6.13.0",
"babel-register": "^6.11.6",
"express": "^4.14.0",
"html-webpack-plugin": "^2.22.0",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"webpack": "^1.13.1"
},
"devDependencies": {
"webpack-dev-server": "^1.14.1"
}
}