-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.23 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
96
97
98
99
100
101
102
103
104
{
"name": "webpack",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"dashboard-build": "webpack-dashboard -- cross-env NODE_ENV=production webpack --config config/webpack.config.js ",
"dashboard-start": "webpack-dashboard -- cross-env NODE_ENV=development webpack-dev-server --config config/webpack.config.js",
"start": "webpack-dev-server --env development --config config/webpack.config.js",
"build": "webpack --env production --config config/webpack.config.js ",
"stylelint": "stylelint \"src/**/*.(vue|scss)\" --fix",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"prettier --write",
"eslint",
"git add"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@ant-design/pro-table": "^2.64.0",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-decorators": "^7.17.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.14.5",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/echarts": "^4.9.13",
"@types/node": "^17.0.30",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.11",
"@types/react-window": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.13.3",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^5.2.6",
"eslint": "^8.13.0",
"eslint-plugin-react": "^7.29.4",
"file-loader": "^4.1.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^8.0.1",
"inspectpack": "^4.7.1",
"less-loader": "^6.0.0",
"lint-staged": "^13.0.3",
"marked": "^2.0.7",
"mobx": "^6.3.13",
"mobx-react": "^7.2.1",
"mobx-react-lite": "^3.2.3",
"mockjs": "^1.0.1-beta3",
"node-sass": "^8.0.0",
"optimize-css-assets-webpack-plugin": "^4.0.0",
"prettier": "^2.7.1",
"react-use": "^17.3.2",
"react-window": "^1.8.6",
"sass-loader": "^7.1.0",
"speed-measure-webpack-plugin": "^1.5.0",
"style-loader": "^2.0.0",
"stylelint": "^14.2.0",
"stylelint-config-standard": "^24.0.0",
"ts-loader": "^8.4.0",
"typescript": "4.7",
"umi-request": "^1.4.0",
"url-loader": "^2.1.0",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9",
"webpack-dashboard": "^3.3.5",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@ant-design/pro-layout": "^6.33.0",
"@douyinfe/semi-ui": "^2.19.0",
"@formily/antd": "^2.0.15",
"@reduxjs/toolkit": "^1.8.1",
"antd": "^4.18.4",
"array-move": "^4.0.0",
"axios": "^0.19.2",
"cross-env": "^7.0.3",
"date-fns": "^2.29.2",
"echarts": "^5.3.0",
"immer": "^9.0.12",
"mini-css-extract-plugin": "^1.6.2",
"moment": "^2.29.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^8.0.1",
"react-router-dom": "^5.0.1",
"react-sortable-hoc": "^2.0.0",
"redux": "^4.2.0",
"redux-persist": "^6.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"sugarss": "^4.0.1",
"swiper": "^4.5.0",
"webpack-stats-plugin": "^1.1.0"
}
}