generated from dishait/tov-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.71 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
94
95
96
97
98
99
{
"name": "tov-template",
"version": "1.4.0",
"description": "一个 vite + vue3 + ts 开箱即用模板",
"scripts": {
"dev": "vite",
"test": "vitest",
"build": "vite build",
"dev:host": "vite --host",
"dev:open": "vite --open",
"preview": "vite preview",
"deps:fresh": "npx taze -w",
"coverage": "vitest --coverage",
"analysis": "windicss-analysis",
"typecheck": "vue-tsc --noEmit",
"deps:fresh:major": "npx taze major -w",
"deps:fresh:minor": "npx taze minor -w",
"deps:fresh:patch": "npx taze patch -w",
"preview:host": "vite preview --host",
"preview:open": "vite preview --open",
"auto:create": "esno scripts/create.ts",
"auto:remove": "esno scripts/remove.ts",
"analysis:build": "windicss-analysis --html dist"
},
"dependencies": {
"vue": "^3.2.31"
},
"devDependencies": {
"@intlify/vite-plugin-vue-i18n": "^3.3.1",
"@markthree/ilazy": "^1.0.2",
"@markthree/node-shared": "^1.3.2",
"@types/ityped": "^1.0.1",
"@types/node": "^17.0.21",
"@types/nprogress": "^0.2.0",
"@vitejs/plugin-vue": "^2.2.4",
"@vitejs/plugin-vue-jsx": "^1.3.8",
"@vueuse/components": "^7.7.1",
"@vueuse/core": "^7.7.1",
"axios": "^0.26.0",
"c8": "^7.11.0",
"esno": "^0.14.1",
"ityped": "^1.0.3",
"markdown-it-anchor": "^8.4.1",
"markdown-it-prism": "^2.2.3",
"mockjs": "^1.1.0",
"nprogress": "^0.2.0",
"pinia": "^2.0.11",
"prism-theme-vars": "^0.2.2",
"typescript": "^4.6.2",
"unplugin-auto-import": "^0.6.1",
"unplugin-icons": "^0.13.3",
"unplugin-vue-components": "^0.17.21",
"vite": "^2.8.6",
"vite-auto-import-resolvers": "^2.1.6",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-inspect": "^0.4.3",
"vite-plugin-md": "^0.11.8",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-optimize-persist": "^0.1.2",
"vite-plugin-package-config": "^0.1.1",
"vite-plugin-pages": "^0.21.4",
"vite-plugin-restart": "^0.1.1",
"vite-plugin-vue-layouts": "^0.6.0",
"vite-plugin-windicss": "^1.8.3",
"vitest": "^0.6.0",
"vue-i18n": "^9.1.9",
"vue-request": "^1.2.4",
"vue-router": "^4.0.13",
"vue-tsc": "^0.32.1",
"windicss": "^3.5.1",
"windicss-analysis": "^0.3.5"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"rollup",
"markdown-it",
"@types/markdown-it"
]
}
},
"vite": {
"optimizeDeps": {
"include": [
"@vueuse/core",
"axios",
"ityped",
"mockjs",
"nprogress",
"pinia",
"vite-plugin-mock/es/createProdMockServer",
"vue",
"vue-i18n",
"vue-request",
"vue-router"
]
}
}
}