forked from ileostar/vitesse-star
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.62 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
{
"name": "vue3-vite-alova-ts-vitest",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"keywords": [
"template-vue",
"vite",
"alova"
],
"scripts": {
"dev": "vite --mode dev",
"pro": "vite --mode pro",
"build": "vue-tsc --noEmit && vite build --mode pro",
"build:dev": "vue-tsc --noEmit && vite build --mode dev",
"build:pro": "vue-tsc --noEmit && vite build --mode pro",
"preview": "vite preview",
"test": "vitest --mode dev",
"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.7.2",
"alova": "^2.16.2",
"vue": "^3.4.14",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@alova/adapter-axios": "^1.2.2",
"@depazer/vite": "^1.0.0",
"@iconify-json/carbon": "^1.1.27",
"@iconify-json/mdi": "^1.1.64",
"@iconify-json/streamline-emojis": "^1.1.8",
"@ileostar/eslint-config": "^0.3.0",
"@types/node": "^20.11.3",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@unocss/eslint-config": "^0.58.3",
"@unocss/eslint-plugin": "^0.58.3",
"@unocss/preset-icons": "^0.58.3",
"@vitejs/plugin-vue": "^5.0.3",
"@vue-macros/volar": "^0.18.10",
"@vue/test-utils": "^2.4.3",
"commitizen": "^4.3.0",
"cz-emoji": "1.3.2-canary.2",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-define-config": "^2.1.0",
"husky": "^8.0.3",
"jsdom": "^23.2.0",
"lint": "^0.8.19",
"lint-staged": "^15.2.0",
"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.6.0",
"stylelint": "^16.1.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-order": "^6.0.4",
"taze": "^0.13.1",
"typescript": "^5.3.3",
"unocss": "^0.58.3",
"unplugin-auto-import": "^0.17.3",
"unplugin-icons": "^0.18.2",
"unplugin-vue-components": "^0.26.0",
"unplugin-vue-macros": "^2.7.9",
"unplugin-vue-router": "^0.7.0",
"vite": "^5.0.11",
"vite-plugin-restart": "^0.4.0",
"vite-plugin-vue-devtools": "1.0.0-rc.5",
"vitest": "^1.2.0",
"vue-tsc": "^1.8.27"
},
"lint-staged": {
"src/**/*.{js,vue,ts}": [
"eslint --fix",
"git add ."
]
}
}