-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 2.03 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
{
"name": "vue3-vite-ts-pinia",
"type": "module",
"version": "0.0.11",
"private": true,
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"serve": "vite --mode dev",
"serve:beta": "vite --mode beta",
"serve:prod": "vite --mode prod",
"build": "vite build --mode dev",
"build:beta": "vite build --mode beta",
"build:prod": "vite build --mode prod",
"preview": "vite preview",
"tsc": "vue-tsc --noEmit --skipLibCheck",
"lint": "eslint . --fix",
"style": "stylelint \"src/**/*.(vue|scss|css)\" --fix",
"postinstall": "husky install",
"cz": "git add . && cz",
"tag": "npm version patch && git push && git push origin --tags"
},
"dependencies": {
"@iconify/json": "2.2.244",
"axios": "1.7.7",
"element-plus": "2.8.1",
"nprogress": "0.2.0",
"pinia": "2.2.2",
"pinia-plugin-persist": "1.0.0",
"vite-plugin-vue-setup-extend": "0.4.0",
"vue": "3.4.38",
"vue-router": "4.4.3"
},
"devDependencies": {
"@antfu/eslint-config": "2.27.1",
"@commitlint/config-conventional": "19.4.1",
"@types/node": "22.5.4",
"@types/nprogress": "0.2.0",
"@unocss/eslint-config": "0.62.2",
"@unocss/preset-rem-to-px": "0.62.3",
"@vitejs/plugin-vue": "5.1.2",
"auto-import-types": "0.0.6",
"commitizen": "4.3.0",
"commitlint": "19.4.1",
"cz-customizable": "7.2.1",
"eslint": "9.9.1",
"eslint-plugin-cypress": "3.5.0",
"eslint-plugin-format": "0.1.2",
"husky": "7.0.4",
"pinia-auto-refs": "0.0.12",
"postcss-html": "1.4.1",
"postcss-scss": "4.0.4",
"sass": "1.52.3",
"stylelint": "14.1.0",
"stylelint-config-standard": "24.0.0",
"stylelint-order": "5.0.0",
"stylelint-scss": "4.0.1",
"typescript": "5.5.4",
"unocss": "0.62.2",
"unplugin-auto-import": "0.18.2",
"unplugin-vue-components": "0.27.4",
"unplugin-vue-router": "0.10.8",
"vite": "5.4.2",
"vite-plugin-vue-layouts": "0.11.0",
"vue-tsc": "2.0.29"
},
"resolutions": {
"@typescript-eslint/utils": "8.2.0"
}
}