-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.54 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
47
48
49
50
51
52
{
"name": "react-boilerplate",
"version": "1.0.0",
"description": "react boilerplate",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"clean": "rm -rf dist/",
"start": "webpack-dev-server --hot --inline",
"build": "npm run clean && NODE_ENV=production webpack --config webpack.config.js --bail",
"postversion": "git push && git push --tags"
},
"author": "huozhi",
"devDependencies": {
"autoprefixer": "^8.3.0",
"babel-core": "^6.10.4",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-promise": "^3.4.1",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^3.2.0",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.4",
"react-hot-loader": "^4.1.2",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"webpack": "3.11.0",
"webpack-dev-server": "2.11.2"
},
"license": "MIT",
"dependencies": {
"classnames": "^2.2.5",
"history": "^4.7.2",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"redux": "^4.0.0",
"redux-actions": "^2.3.0",
"redux-promise-middleware": "^5.1.1",
"redux-thunk": "^2.1.0"
}
}