-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.41 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
{
"name": "vite-vue2-typescript",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint './src/**/*.{js,ts,tsx,vue,md}'",
"lint:fix": "eslint './src/**/*.{js,ts,tsx,vue,md}' --fix",
"format": "pretty-quick --staged --ignore-path .gitignore"
},
"dependencies": {
"@vitejs/plugin-vue2": "^2.2.0",
"@vueuse/core": "^4.9.1",
"clipboard": "^2.0.11",
"core-js": "^3.11.1",
"element-ui": "^2.15.5",
"tdesign-vue": "1.4.5-naruto",
"vue": "^2.7.0",
"vue-router": "^3.5.1",
"vue2-helpers": "~1.1.7",
"vuex": "^3.6.2"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@vue/compiler-sfc": "^3.2.4",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/runtime-dom": "^3.2.4",
"commitlint-config-cz": "^0.13.2",
"cz-customizable": "^6.3.0",
"eslint": "~7.25.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-prettier": "~3.4.0",
"eslint-plugin-vue": "~7.9.0",
"lint-staged": "^11.1.2",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.1",
"sass": "^1.51.0",
"terser": "^5.18.2",
"typescript": "^4.3.5",
"unplugin-vue-components": "0.17.11",
"unplugin-vue2-script-setup": "^0.4.2",
"vite": "^4.3.9",
"vite-plugin-inspect": "^0.2.2",
"vite-plugin-optimize-persist": "^0.0.5",
"vite-plugin-package-config": "^0.0.3",
"vite-plugin-pages": "^0.17.4",
"vite-plugin-style-import": "^1.1.1",
"vite-plugin-vue-layouts": "^0.3.1",
"vue-demi": "~0.12.1",
"vue-template-compiler": "~2.6.14"
},
"lint-staged": {
"**/**.{js,json,vue,ts}": [
"eslint --fix --ignore-path .gitignore",
"pretty-quick --staged --ignore-path .gitignore"
]
},
"vite": {
"optimizeDeps": {
"include": [
"@vue/runtime-dom",
"clipboard",
"element-ui",
"element-ui/lib/button",
"element-ui/lib/card",
"element-ui/lib/collapse",
"element-ui/lib/collapse-item",
"element-ui/lib/divider",
"element-ui/lib/menu",
"element-ui/lib/menu-item",
"element-ui/lib/tag",
"element-ui/lib/tooltip",
"vue",
"vue-router",
"vuex"
]
}
}
}