-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.99 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "react-zyh",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"devEntry": "node config/entry/entryBuild.js",
"devHtml": "node config/webpack/webpack.html.conf.js",
"devFile": "npm run devEntry && npm run devHtml",
"dev": "cross-env webpack-dev-server --open --devtool eval --colors --profile --config config/webpack/webpack.dev.conf.js",
"build": "cross-env webpack --progress --colors --config config/webpack/webpack.prod.conf.js"
},
"keywords": [],
"author": "zyh",
"license": "ISC",
"dependencies": {
"react": "^16.9.0",
"react-document-title": "^2.0.3",
"react-dom": "^16.9.0",
"react-redux": "^7.1.1",
"react-router-dom": "^5.0.1",
"redux": "^4.0.4"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.5.5",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"cache-loader": "^4.1.0",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"cross-env": "^5.2.0",
"css-loader": "^3.2.0",
"eslint": "^6.2.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-react-app": "^5.0.1",
"eslint-loader": "^3.0.0",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file": "^0.2.2",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"immutable": "^4.0.0-rc.12",
"jquery": "^3.4.1",
"keymirror": "^0.1.1",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.14.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"portfinder": "^1.0.26",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-px2rem": "^0.3.0",
"postcss-pxtorem": "^4.0.1",
"postcss-safe-parser": "^4.0.1",
"precss": "^4.0.0",
"react-dev-utils": "^9.0.3",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^2.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"webpack-hud": "^0.1.2",
"webpack-merge": "^4.2.2"
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"import/no-webpack-loader-syntax": 0,
"no-script-url": 0,
"jsx-a11y/href-no-hash": 2
}
}
}