-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.39 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
{
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=development babel-node server.js",
"build": "cross-env NODE_ENV=production webpack --progress --color",
"test": "jest",
"test:watch": "yarn run test -- --watch",
"lint": "eslint --ext .js src",
"precommit": "yarn run lint"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"antd": "^4.21.5",
"classnames": "^2.3.1",
"dva": "^2.4.1",
"dva-loading": "^3.0.22",
"ramda": "^0.28.0",
"react": "18.x",
"react-dom": "18.x"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.18.2",
"@babel/node": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/runtime": "^7.18.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"babel-loader": "^8.2.5",
"babel-plugin-module-resolver": "^4.1.0",
"clean-webpack-plugin": "^4.0.0",
"connect-history-api-fallback": "^2.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"express": "^4.18.1",
"express-mock-api-middleware": "^1.0.12",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"http-proxy-middleware": "^2.0.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.2",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"mini-css-extract-plugin": "^2.6.1",
"mockjs": "^1.1.0",
"postcss-loader": "^7.0.0",
"postcss-preset-env": "^7.7.2",
"prettier": "^2.7.1",
"react-refresh": "^0.14.0",
"signale": "^1.4.0",
"style-loader": "^3.3.1",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^26.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-config-utils": "^2.3.1",
"webpack-dev-middleware": "^5.3.3",
"webpack-hot-middleware": "^2.25.1"
}
}