-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.73 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
53
54
{
"name": "react-ie8-webpack3-example",
"version": "1.0.0",
"description": "React IE8 Webpack3 Example",
"scripts": {
"dev": "webpack-dev-server --config webpack.config.dev.js",
"build": "webpack --config webpack.config.dist.js",
"deploy": "npm run build && cross-env PORT=40000 node server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "shiyinghua <shiyinghua170914@credithc.com>",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.26.0",
"connect-history-api-fallback": "^1.5.0",
"console-polyfill": "^0.2.2",
"es5-shim": "^4.4.1",
"es6-promise": "^4.2.4",
"fetch-detector": "^1.0.1",
"fetch-ie8": "^1.5.0",
"history": "1.17.0",
"qs": "^6.5.2",
"react": "0.14.9",
"react-dom": "0.14.9",
"react-redux": "4.4.0",
"react-router": "1.0.3",
"redux": "3.5.1",
"redux-thunk": "^2.3.0",
"webpack": "3.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-es3-member-expression-literals": "6.22.0",
"babel-plugin-transform-es3-property-literals": "6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"es3ify-loader": "^0.2.0",
"es3ify-webpack-plugin": "0.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"webpack-dev-server": "2.6.1"
}
}