-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.45 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
{
"version": "0.0.0",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky install",
"pre-commit": "yarn lint-staged",
"lint": "tsc --noEmit && eslint src --ext .ts,.tsx ",
"lint:fix": "tsc --noEmit && eslint --fix --ext src --ext .ts,.tsx",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\"",
"commit": "git-cz"
},
"dependencies": {
"@ant-design/charts": "^1.1.19",
"antd": "^4.16.2",
"axios": "^0.21.1",
"history": "^5.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intl": "^5.20.2",
"react-query": "^3.16.1",
"react-router-dom": "6.0.0-beta.0",
"zustand": "^3.5.2"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@types/lodash.union": "^4.6.6",
"@types/node": "^15.12.2",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"@vitejs/plugin-react-refresh": "^1.3.1",
"commitizen": "^4.2.4",
"commitlint-config-cz": "^0.13.2",
"cz-customizable": "^6.3.0",
"eslint": "^7.28.0",
"husky": "^6.0.0",
"less": "^4.1.1",
"lint-staged": "^11.0.0",
"lodash.union": "^4.6.0",
"mockjs": "^1.1.0",
"prettier": "^2.3.1",
"typescript": "^4.3.2",
"vite": "^2.3.7",
"vite-plugin-mock": "^2.7.2",
"vite-plugin-style-import": "^0.10.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}