-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.94 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.94 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "wepack-react-app",
"version": "1.0.0",
"description": "A quick project for webpack and react",
"main": "index.js",
"repository": "git@github.com:Hazel54/webpack-react-app.git",
"author": "张倩 <qian.zhang02@ele.me>",
"license": "ISC",
"scripts": {
"dev": "webpack-dev-server --config build --hot --inline --colors",
"clean": "rm -rf dist && mkdir dist",
"preprod": "yarn run clean",
"prod": "webpack -p --hide-modules --config build/webpack.prod.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"css-loader": "^0.23.0",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^9.0.0",
"eslint-plugin-import": "^1.10.0",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.0",
"extract-text-webpack-plugin": "^2.0.0-beta",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.28.0",
"lodash.assign": "^4.2.0",
"node-sass": "^4.5.0",
"open-browser-webpack-plugin": "0.0.3",
"postcss-flex-fallback": "^0.1.0",
"postcss-loader": "^1.2.1",
"postcss-px2rem": "^0.3.0",
"react-hot-loader": "^3.0.0-beta.6",
"sass-loader": "^6.0.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"fastclick": "^1.0.6",
"history": "^4.5.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^5.0.2",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.5",
"redux": "^3.6.0",
"redux-thunk": "^1.0.3",
"superagent": "^2.0.0"
},
"keywords": [
"react",
"react-router",
"redux",
"webpack",
"sass",
"hot-loader"
]
}