-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
76 lines (76 loc) · 2.21 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
{
"name": "@tencent/tdesign-react-starter",
"version": "0.3.1",
"private": true,
"scripts": {
"dev:mock": "vite --open --mode mock",
"dev": "vite --open --mode development",
"dev:linux": "vite --mode development",
"build:test": "vite build --mode test",
"build": "vite build --mode release",
"build:site": "vite build --mode site",
"site:preview": "npm run build && cp -r dist _site",
"preview": "vite preview --mode test",
"test": "echo \"no test specified,work in process\"",
"test:coverage": "echo \"no test specified,work in process\"",
"lint": "eslint ./src --ext ts,tsx",
"lint:fix": "eslint ./src --ext ts,tsx --fix",
"prepare": "husky install"
},
"devDependencies": {
"@honkhonk/vite-plugin-svgr": "^1.1.0",
"@types/echarts": "^4.9.13",
"@types/lodash": "^4.14.178",
"@types/mockjs": "^1.0.6",
"@types/node": "^20.2.5",
"@types/qrcode.react": "^1.0.2",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^1.3.2",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.4.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"husky": "^8.0.1",
"less": "^4.1.3",
"prettier": "^2.5.1",
"typescript": "^4.8.4",
"vite": "^2.9.15",
"vite-plugin-mock": "^2.9.6"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.5",
"axios": "^1.2.0",
"axios-jsonp": "^1.0.4",
"classnames": "^2.3.1",
"dayjs": "^1.10.7",
"echarts": "^5.3.0",
"echarts-for-react": "^3.0.2",
"lodash": "^4.17.21",
"mockjs": "^1.1.0",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^7.2.4",
"react-router-dom": "^6.3.0",
"tdesign-icons-react": "^0.2.0",
"tdesign-react": "^1.1.10",
"tvision-color": "^1.5.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}