-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.06 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.06 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
67
68
69
70
71
72
73
{
"name": "react-cli",
"sideEffects": false,
"version": "1.0.0",
"description": "cli",
"main": "index.js",
"scripts": {
"dev": "node build/dev.js --progress",
"build": "node build/prod.js --progress"
},
"keywords": [
"react",
"react-cli",
"cli"
],
"author": "zhanzf",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^8.6.5",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chalk": "^2.4.1",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^0.28.11",
"eslint": "^5.0.1",
"eslint-config-react-app": "^2.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.1.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.16.3",
"happypack": "^5.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.18.0",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.9.1",
"optimize-css-assets-webpack-plugin": "^4.0.3",
"ora": "^2.1.0",
"postcss-loader": "^2.1.5",
"react-css-modules": "^4.7.3",
"react-dev-utils": "^5.0.1",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.3",
"sass-resources-loader": "^1.3.3",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^4.15.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.2",
"webpack-merge": "^4.1.3"
},
"dependencies": {
"react": "^16.12",
"react-dom": "^16.12",
"react-redux": "^5.0.7",
"react-router-dom": "^5.1",
"redux": "^4.0.0"
}
}