forked from kirklin/boot-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.99 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
{
"name": "vite-boot",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"description": "Vite starter template with UnoCSS",
"keywords": [
"viteBoot",
"vite-boot",
"vite",
"unocss",
"fast",
"boot"
],
"main": "src/main.ts",
"scripts": {
"dev": "vite",
"build": "vite build",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:unit": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@kirklin/logger": "^0.0.2",
"@kirklin/reset-css": "^0.0.3",
"@vueuse/core": "^10.2.1",
"daisyui": "^3.2.1",
"iso-639-1": "^2.1.15",
"nprogress": "^0.2.0",
"pinia": "^2.1.4",
"unocss-preset-chinese": "^0.0.6",
"vue": "^3.3.4",
"vue-i18n": "^9.2.2",
"vue-router": "^4.2.4"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@iconify-json/mdi": "^1.1.53",
"@iconify-json/tabler": "^1.1.83",
"@intlify/unplugin-vue-i18n": "^0.12.2",
"@kirklin/eslint-config": "^0.5.0",
"@types/node": "^20.4.2",
"@types/nprogress": "^0.2.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vitest/coverage-c8": "^0.33.0",
"@vue/compiler-dom": "^3.3.4",
"@vue/test-utils": "^2.4.0",
"eslint": "^8.45.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.3",
"pnpm": "^8.6.9",
"typescript": "^5.1.6",
"unocss": "^0.53.5",
"unocss-preset-daisy": "^5.0.0",
"unplugin-auto-import": "^0.16.6",
"unplugin-icons": "^0.16.5",
"unplugin-vue-components": "^0.25.1",
"vite": "^4.4.4",
"vite-plugin-inspect": "^0.7.33",
"vite-plugin-pwa": "^0.16.4",
"vite-plugin-vue-devtools": "^1.0.0-alpha.2",
"vitest": "^0.33.0",
"vue-tsc": "^1.8.5"
},
"lint-staged": {
"**/*": "eslint --fix"
}
}