-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.53 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.53 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "react-startkit",
"version": "1.0.0",
"description": "",
"main": "index.jsx",
"keywords": [],
"author": "",
"license": "MIT",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"ie 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"ie 11"
]
},
"dependencies": {
"@ant-design/icons": "^4.2.2",
"@babel/core": "7.11.4",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.11.0",
"@babel/preset-react": "^7.9.4",
"@hot-loader/react-dom": "^16.12.0",
"antd": "^4.7.3",
"autoprefixer": "9.3.1",
"axios": "^0.20.0",
"babel-cli": "^6.24.1",
"babel-core": "6.26.3",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"babel-plugin-transform-imports": "^2.0.0",
"bundle-loader": "0.5.6",
"case-sensitive-paths-webpack-plugin": "2.3.0",
"classnames": "^2.2.6",
"clean-webpack-plugin": "0.1.19",
"connected-react-router": "^6.8.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "1.0.1",
"eslint": "7.7.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-formatter-pretty": "4.0.0",
"eslint-loader": "4.0.2",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "6.0.0",
"history": "^5.0.0",
"html-webpack-harddisk-plugin": "1.0.2",
"html-webpack-plugin": "4.4.0",
"intl": "^1.2.5",
"mini-css-extract-plugin": "0.4.4",
"postcss-import": "12.0.1",
"postcss-loader": "3.0.0",
"prettier": "2.1.1",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-app-polyfill": "^1.0.6",
"react-dom": "^16.11.0",
"react-hot-loader": "^4.12.15",
"react-intl": "5.8.0",
"react-loadable": "5.5.0",
"react-redux": "^7.2.2",
"react-router-cache-route": "^1.8.2",
"react-router-dom": "5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"sass": "^1.26.10",
"sass-loader": "10.0.1",
"style-loader": "0.23.1",
"url-loader": "4.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-merge": "5.1.3"
},
"devDependencies": {
"webpack-bundle-analyzer": "^3.8.0",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"start": "webpack-dev-server --mode development --profile --colors --hot --progress",
"deploy": "webpack --mode production --profile --colors --progress",
"format": "prettier --write \"{,src/**/}*.{js,jsx}\""
}
}