-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.56 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
{
"name": "landao-admin",
"private": true,
"version": "0.0.0",
"scripts": {
"dev:mock": "vite --open --mode mock",
"dev": "vite --open --mode development",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@landao/hooks": "^1.0.5",
"@vueuse/core": "^10.7.1",
"axios": "^1.6.4",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.10",
"echarts": "^5.4.3",
"lodash-es": "^4.17.21",
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"qs": "^6.11.2",
"spark-md5": "^3.0.2",
"store": "^2.0.12",
"tdesign-icons-vue-next": "^0.2.2",
"tdesign-vue-next": "^1.8.1",
"tvision-color": "^1.6.0",
"vue": "^3.4.5",
"vue-clipboard3": "^2.0.0",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.6.2",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/compiler-sfc": "^3.4.5",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"less": "^4.2.0",
"mockjs": "^1.1.0",
"postcss-html": "^1.5.0",
"postcss-less": "^6.0.0",
"vite": "^5.0.10",
"vite-plugin-cdn-import": "^0.3.5",
"vite-plugin-html": "^3.2.1",
"vite-plugin-mock": "^3.0.1",
"vite-svg-loader": "^5.1.0",
"vue-types": "^5.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog-zh"
}
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"prettier --write",
"pnpm run lint:fix"
],
"*.{html,vue,css,sass,less}": [
"pnpm run stylelint:fix"
]
}
}