-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.58 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "vue3-starter",
"version": "1.0.0",
"author": {
"name": "ydfk",
"email": "[email protected]",
"url": "https://github.com/ydfk/vue3-starter"
},
"scripts": {
"dev:pre": "node ./node_modules/esbuild/install.js",
"dev": "vite",
"dev:debug": "vite --debug",
"build:only": "rimraf dist && vite build",
"build": "vue-tsc --noEmit --skipLibCheck && rimraf dist && vite build",
"serve": "vite preview",
"type:check": "vue-tsc --noEmit --skipLibCheck",
"clean:cache": "rimraf node_modules/.cache/ && rimraf node_modules/.vite",
"clean:lib": "rimraf node_modules",
"lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,ts,tsx}\" --fix --max-warnings=500",
"lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,sass,vue,html,md}\"",
"lint:stylelint": "stylelint --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint": "pnpm lint:prettier && pnpm lint:stylelint && pnpm lint:eslint && pnpm type:check",
"reinstall": "rimraf yarn.lock && rimraf package.lock.json && rimraf pnpm-lock.yaml && rimraf node_modules && pnpm install",
"analysis": "windicss-analysis",
"cz": "git add . & czg",
"cz:ai": "git add . & czg ai",
"cz:pass": "git add . & czg --no-verify",
"prepare": "husky"
},
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"@vueuse/core": "^10.8.0",
"ant-design-vue": "^4.1.2",
"axios": "^1.6.7",
"dayjs": "^1.11.10",
"echarts": "^5.5.0",
"lodash-es": "^4.17.21",
"mitt": "^3.0.1",
"mockjs": "^1.1.0",
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"qs": "^6.11.2",
"unocss": "^0.58.5",
"vue": "^3.4.19",
"vue-echarts": "^6.6.9",
"vue-router": "4"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/compiler-sfc": "^3.4.19",
"autoprefixer": "^10.4.17",
"czg": "^1.8.0",
"esbuild": "^0.20.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-vue": "^9.21.1",
"husky": "^9.0.11",
"less": "^4.2.0",
"lint-staged": "^15.2.2",
"postcss": "^8.4.35",
"postcss-html": "^1.6.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.71.1",
"scss": "^0.2.4",
"stylelint": "^16.2.1",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"unocss-preset-chinese": "^0.3.2",
"unocss-preset-ease": "^0.0.3",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.1.4",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-mock": "3.0.1",
"vite-plugin-svg-icons2": "^1.0.0",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^1.8.27"
},
"engines": {
"node": ">=18.12.0",
"pnpm": ">=8.10.0"
},
"volta": {
"node": "20.12.0",
"pnpm": "8.15.4"
}
}