-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 1.97 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
{
"name": "kkdl",
"type": "module",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky",
"lint": "eslint . --fix",
"commit": "git-cz"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@iconify/vue": "^4.1.2",
"@types/nprogress": "^0.2.3",
"@vueuse/core": "^11.2.0",
"axios": "^1.7.7",
"dayjs": "^1.11.13",
"echarts": "^5.5.1",
"element-plus": "^2.8.7",
"js-file-download": "^0.4.12",
"lodash-es": "^4.17.21",
"nprogress": "^0.2.0",
"pinia": "^2.2.6",
"pinia-plugin-persistedstate": "^4.1.3",
"qs": "^6.13.0",
"ress": "^5.0.2",
"uuid": "^11.0.3",
"vue": "^3.5.12",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/cz-commitlint": "^19.5.0",
"@types/crypto-js": "^4.2.2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.9.0",
"@types/qs": "^6.9.17",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@vitejs/plugin-vue": "^5.1.5",
"autoprefixer": "^10.4.20",
"commitizen": "^4.3.1",
"commitlint": "^19.5.0",
"eslint": "^9.14.0",
"eslint-plugin-format": "^0.1.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.48",
"postcss-html": "^1.7.0",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.80.6",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"unplugin-auto-import": "^0.18.3",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.10",
"vite-plugin-compression2": "^1.3.0",
"vite-plugin-vue-devtools": "^7.6.3",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.1.10"
},
"lint-staged": {
"*": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}