-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.18 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
{
"name": "vue-zero-admin",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "run-p type-check \"build-only {@}\" --",
"build:prod": "run-p \"build-only --mode production\" --",
"build:test": "run-p \"build-only --mode test\" --",
"build:dev": "run-p \"build-only --mode development\" --",
"preview": "vite preview",
"build-only": "vite build --mode production",
"type-check": "vue-tsc --build --force",
"lint": "npx oxlint && npx eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"@vueuse/core": "^12.0.0",
"axios": "^1.7.8",
"disable-devtool": "^0.3.8",
"element-plus": "^2.8.8",
"es-toolkit": "^1.27.0",
"pinia": "^2.2.8",
"vue": "^3.5.13",
"vue-i18n": "^10.0.5",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@intlify/unplugin-vue-i18n": "^6.0.0",
"@rushstack/eslint-patch": "^1.10.4",
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.1",
"@unocss/eslint-config": "^0.64.1",
"@unocss/preset-rem-to-px": "^0.64.1",
"@unocss/transformer-directives": "^0.64.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.4",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.15.0",
"eslint-plugin-oxlint": "^0.13.2",
"eslint-plugin-vue": "^9.31.0",
"jsdom": "^25.0.1",
"npm-run-all2": "^7.0.1",
"oxlint": "^0.13.2",
"prettier": "^3.4.1",
"sass": "^1.81.0",
"typescript": "~5.7.2",
"unocss": "^0.64.1",
"unplugin-auto-import": "^0.18.6",
"unplugin-vue-components": "^0.27.5",
"vite": "6.0.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-mkcert": "^1.17.6",
"vite-plugin-oxlint": "^1.1.0",
"vite-plugin-pages": "^0.32.4",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-vue-devtools": "^7.6.7",
"vue-tsc": "^2.1.10"
},
"lint-staged": {
"**/*.{js,mjs,cjs,jsx,ts,mts,cts,tsx,vue,astro,svelte}": "oxlint"
}
}