-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
110 lines (110 loc) · 3.42 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
105
106
107
108
109
110
{
"name": "react-arco-admin",
"version": "1.0.0",
"description": "react、arco、admin",
"main": "index.js",
"author": "yaogengzhu",
"license": "ISC",
"scripts": {
"prepare": "husky install",
"start": "env-cmd -f .env.development node ./server/index",
"build": "env-cmd -f .env.production webpack --config ./build/webpack.prod.js",
"deploy": "env-cmd -f .env.production webpack --config ./build/webpack.prod.js & . deploy.sh",
"deploy:cos": "node ./build/upload.js",
"lint": "eslint --ext .ts --ext .tsx src --fix"
},
"lint-staged": {
"*.{js,jsx,tsx, ts}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@arco-design/webpack-plugin": "^1.7.0",
"@babel/core": "^7.14.6",
"@babel/parser": "^7.18.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.15.8",
"@babel/plugin-proposal-private-methods": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/react": "^17.0.27",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"autoprefixer": "^10.3.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"css-minimizer-webpack-plugin": "^3.0.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^8.0.1",
"lint-staged": "^11.1.2",
"npm": "^8.0.0",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"postcss": "^8.3.5",
"postcss-loader": "^6.1.1",
"pre-commit": "^1.2.2",
"prettier": "^2.3.2",
"thread-loader": "^3.0.4",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"@arco-design/color": "^0.4.0",
"@arco-design/web-react": "^2.33.0",
"@babel/preset-typescript": "^7.15.0",
"@react-spring/web": "^9.4.5",
"@types/mockjs": "^1.0.6",
"@types/uuid": "^8.3.4",
"@use-gesture/react": "^10.2.12",
"ahooks": "^3.1.9",
"async": "^3.2.4",
"axios": "^0.26.0",
"babel-plugin-import": "^1.13.3",
"bizcharts": "^4.1.16",
"browserslist": "^4.16.6",
"cache-loader": "^4.1.0",
"chalk": "^4.1.2",
"classnames": "^2.3.1",
"cos-nodejs-sdk-v5": "^2.11.15",
"css-loader": "^5.2.6",
"dotenv": "^16.0.3",
"env-cmd": "^10.1.0",
"eslint-loader": "^4.0.2",
"file-loader": "^6.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"history": "^5.2.0",
"html-webpack-plugin": "^5.3.2",
"ip": "^1.1.5",
"less": "^4.1.1",
"less-loader": "^10.0.1",
"mini-css-extract-plugin": "^2.1.0",
"mockjs": "^1.1.0",
"nprogress": "^0.2.0",
"prop-types": "^15.7.2",
"query-string": "^7.1.1",
"react": "^18.1.0",
"react-color": "^2.19.3",
"react-dom": "^18.1.0",
"react-error-boundary": "^3.1.4",
"react-router-dom": "^6.2.1",
"react-spring": "^9.4.5",
"style-loader": "^3.0.0",
"terser-webpack-plugin": "^5.3.3",
"url-loader": "^4.1.1",
"uuid": "^8.3.2",
"webpack": "^5.80.0",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
}
}