-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.49 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
{
"name": "vitesse-star",
"version": "0.0.1",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"keywords": [
"template-vue",
"vite",
"alova"
],
"scripts": {
"dev": "vite --open",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest --mode development",
"typecheck": "vue-tsc --noEmit",
"commit": "git add . && git-cz",
"push": "git push",
"prepare": "husky install",
"lint": "eslint . --fix",
"fix": "eslint src/**/*.* --fix",
"style": "stylelint \"src/**/*.(vue|scss|css)\" --fix",
"up": "taze major -I"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji"
}
},
"dependencies": {
"@vueuse/core": "^10.11.0",
"alova": "^2.21.3",
"vue": "^3.4.29",
"vue-router": "^4.3.3"
},
"devDependencies": {
"@alova/adapter-axios": "^1.2.6",
"@antfu/eslint-config": "^2.21.1",
"@iconify-json/carbon": "^1.1.35",
"@iconify-json/mdi": "^1.1.66",
"@iconify-json/streamline-emojis": "^1.1.8",
"@ileostar/eslint-config": "^0.3.0",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@unocss/eslint-config": "^0.61.0",
"@unocss/eslint-plugin": "^0.61.0",
"@unocss/preset-icons": "^0.61.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vue-macros/volar": "^0.21.1",
"@vue/test-utils": "^2.4.6",
"commitizen": "^4.3.0",
"cz-emoji": "1.3.2-canary.2",
"dotenv": "^16.4.5",
"eslint": "^9.5.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-format": "^0.1.2",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"lint": "^0.8.19",
"lint-staged": "^15.2.7",
"onu-ui": "1.0.14-beta.2",
"pinia": "^2.1.7",
"pinia-auto-refs": "^0.0.10",
"pinia-plugin-persistedstate": "^3.2.1",
"postcss-html": "^1.7.0",
"stylelint": "^16.6.1",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-order": "^6.0.4",
"taze": "^0.13.8",
"typescript": "^5.4.5",
"unocss": "^0.61.0",
"unplugin-auto-import": "^0.17.6",
"unplugin-icons": "^0.19.0",
"unplugin-vue-components": "^0.27.0",
"unplugin-vue-macros": "^2.9.4",
"unplugin-vue-router": "^0.8.6",
"vite": "^5.3.1",
"vite-plugin-restart": "^0.4.0",
"vite-plugin-vue-devtools": "1.0.0-rc.5",
"vitest": "^1.6.0",
"vue-tsc": "^2.0.21"
},
"lint-staged": {
"src/**/*.{js,vue,ts}": [
"eslint --fix",
"git add ."
]
}
}