-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.04 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
{
"private": true,
"scripts": {
"dev": "max dev",
"dev:vercel": "vercel dev --listen 5001",
"build": "max build",
"test": "umi test",
"eslint": "eslint --ext=.jsx,.js,.tsx,.ts src",
"eslint-fix": "eslint --ext=.jsx,.js,.tsx,.ts src --fix",
"precommit": "lint-staged"
},
"dependencies": {
"@ahooksjs/use-url-state": "3.5.1",
"@ant-design/charts": "1.4.2",
"@ant-design/icons": "5.1.4",
"@antv/g2plot": "2.4.31",
"@babel/polyfill": "^7.12.1",
"@types/cookies": "^0.7.7",
"@types/js-cookie": "3.0.3",
"@types/mobile-detect": "^1.3.4",
"@types/sha1": "^1.1.3",
"@vercel/node": "2.15.2",
"ahooks": "3.7.7",
"ali-react-table": "^2.6.1",
"antd": "5.6.2",
"antd-mobile": "5.31.1",
"antd-mobile-icons": "0.3.0",
"axios": "1.4.0",
"bizcharts": "4.1.22",
"dayjs": "1.11.8",
"financial": "^0.1.3",
"fund-tools": "1.1.12",
"js-cookie": "3.0.5",
"mobile-detect": "^1.4.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"sha1": "^1.1.1",
"styled-components": "5.3.11",
"typescript": "5.1.3"
},
"devDependencies": {
"@types/jest": "29.5.2",
"@types/react": "18.2.13",
"@types/react-dom": "18.2.6",
"@types/react-test-renderer": "18.0.0",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "5.60.0",
"@typescript-eslint/parser": "5.60.0",
"@umijs/max": "4.0.69",
"babel-eslint": "10.1.0",
"eslint": "8.43.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-umi": "^1.4.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"prettier": "2.8.8",
"react-test-renderer": "18.2.0",
"tslint": "6.1.3",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "5.0.0",
"umi-types": "0.5.14"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
}
}