-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.6 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
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": "20",
"pnpm": "8"
},
"scripts": {
"build": "vite build",
"start": "vite",
"dev": "vite",
"lint": "eslint --no-warn-ignored .",
"lint:fix": "eslint --fix --no-warn-ignored .",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview",
"test": "vitest",
"up": "taze major -I",
"postinstall": "npx simple-git-hooks"
},
"dependencies": {
"@vueuse/core": "^10.7.1",
"fastest-levenshtein": "^1.0.16",
"ts-debounce": "^4.0.0",
"vue": "^3.3.13",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.1",
"@iconify-json/mdi": "^1.1.63",
"@types/node": "^20.10.5",
"@unocss/eslint-config": "^0.58.2",
"@unocss/eslint-plugin": "^0.58.2",
"@unocss/reset": "^0.58.2",
"@vitejs/plugin-vue": "^4.6.0",
"@vue-macros/volar": "^0.17.4",
"@vue/test-utils": "^2.4.3",
"eslint": "^8.56.0",
"eslint-plugin-format": "^0.1.0",
"jsdom": "^23.0.1",
"lint-staged": "^15.2.0",
"pnpm": "^8.13.1",
"sass": "^1.69.5",
"simple-git-hooks": "^2.9.0",
"taze": "^0.13.1",
"typescript": "^5.3.3",
"unocss": "^0.58.2",
"unplugin-auto-import": "^0.17.3",
"unplugin-vue-components": "^0.26.0",
"unplugin-vue-macros": "^2.7.7",
"unplugin-vue-router": "^0.7.0",
"vite": "^5.0.10",
"vite-plugin-pwa": "^0.17.4",
"vitest": "^1.1.0",
"vue-tsc": "^1.8.27"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}