-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage copy.json
124 lines (123 loc) · 3.41 KB
/
package copy.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "vite-vue2-typescript",
"private": true,
"scripts": {
"postinstall": "husky install",
"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": {
"@vueuse/core": "^4.9.1",
"axios": "^0.27.2",
"core-js": "^3.22.5",
"echarts": "^4.9.0",
"element-ui": "^2.15.5",
"g": "^2.0.1",
"nprogress": "^0.2.0",
"throttle-debounce": "^5.0.0",
"vue": "^2.6.12",
"vue-fullscreen": "^2.6.1",
"vue-router": "^3.5.1",
"vue2-helpers": "~1.1.7",
"vuedraggable": "^2.24.3",
"vuex": "^3.6.2",
"yarn": "^1.22.18"
},
"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",
"husky": "~6.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.1",
"sass": "^1.51.0",
"typescript": "^4.3.5",
"unplugin-vue-components": "0.17.11",
"unplugin-vue2-script-setup": "^0.4.2",
"vite": "~2.8.6",
"vite-plugin-compression": "^0.4.0",
"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",
"vite-plugin-vue2": "^1.4.4",
"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"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.js"
}
},
"vite": {
"optimizeDeps": {
"include": [
"@vue/runtime-dom",
"axios",
"element-ui",
"element-ui/lib/button",
"element-ui/lib/card",
"element-ui/lib/carousel",
"element-ui/lib/carousel-item",
"element-ui/lib/cascader",
"element-ui/lib/col",
"element-ui/lib/dialog",
"element-ui/lib/divider",
"element-ui/lib/form",
"element-ui/lib/form-item",
"element-ui/lib/input",
"element-ui/lib/link",
"element-ui/lib/menu",
"element-ui/lib/menu-item",
"element-ui/lib/option",
"element-ui/lib/pagination",
"element-ui/lib/result",
"element-ui/lib/row",
"element-ui/lib/select",
"element-ui/lib/tag",
"element-ui/lib/timeline",
"element-ui/lib/timeline-item",
"nprogress",
"throttle-debounce",
"vue",
"vue-fullscreen",
"vue-router",
"vuedraggable",
"vuex"
]
}
},
"__npminstall_done": false
}