generated from dishait/tov-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.88 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
100
101
102
103
104
105
{
"name": "tov-template",
"version": "1.10.0",
"description": "vite + vue3 + ts 开箱即用现代开发模板",
"type": "module",
"scripts": {
"dev": "vite",
"test": "vitest",
"build": "vite build",
"prepare": "husky install",
"dev:host": "vite --host",
"dev:open": "vite --open",
"preview": "vite preview",
"deps:fresh": "npx taze -w",
"coverage": "vitest --coverage",
"analysis": "npx windicss-analysis",
"typecheck": "npx 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",
"lint": "eslint --ext .ts,.js,.jsx,.vue .",
"lint:fix": "eslint --fix --ext .ts,.js,.jsx,.vue .",
"auto:create": "plop --plopfile scripts/create.cjs",
"auto:remove": "plop --plopfile scripts/remove.cjs",
"analysis:build": "npx windicss-analysis --html dist"
},
"dependencies": {
"vue": "^3.2.45"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@intlify/vite-plugin-vue-i18n": "^7.0.0",
"@types/ityped": "^1.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/parser": "^5.48.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vueuse/core": "^9.10.0",
"@vueuse/integrations": "^9.10.0",
"c8": "^7.12.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.8.0",
"fast-glob": "^3.2.12",
"fs-extra": "^11.1.0",
"happy-dom": "^8.1.3",
"husky": "^8.0.3",
"ityped": "^1.0.3",
"lint-staged": "^13.1.0",
"local-pkg": "^0.4.2",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.6",
"markdown-it-prism": "^2.3.0",
"mockjs": "^1.1.0",
"nprogress": "^0.2.0",
"pinia": "^2.0.28",
"pinia-plugin-persistedstate": "^3.0.2",
"plop": "^3.1.1",
"prettier": "^2.8.2",
"prism-theme-vars": "^0.2.4",
"prismjs": "^1.29.0",
"typescript": "^4.9.4",
"unplugin-auto-import": "^0.12.1",
"unplugin-icons": "^0.15.1",
"unplugin-vue-components": "^0.22.12",
"unplugin-vue-macros": "^1.3.2",
"unplugin-vue-router": "^0.3.2",
"vite": "^4.0.4",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-inspect": "^0.7.12",
"vite-plugin-md": "^0.22.5",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-removelog": "^0.2.1",
"vite-plugin-use-modules": "^1.3.1",
"vite-plugin-vue-meta-layouts": "^0.1.1",
"vite-plugin-windicss": "^1.8.10",
"vitest": "^0.26.3",
"vue-i18n": "^9.2.2",
"vue-request": "^1.2.4",
"vue-router": "^4.1.6",
"windicss": "^3.5.6"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"fp-ts",
"rollup",
"markdown-it",
"inferred-types",
"@types/markdown-it",
"@rollup/pluginutils",
"@yankeeinlondon/builder-api",
"@yankeeinlondon/happy-wrapper"
]
}
},
"lint-staged": {
"*.{js,jsx,vue}": "eslint --cache --fix"
}
}