-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.42 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
{
"name": "vite-ts-vue27",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint-fix": "eslint --fix --ext .ts,.vue src",
"lint": "eslint",
"prepare": "husky"
},
"dependencies": {
"axios": "^0.27.2",
"echarts": "^5.4.3",
"element-ui": "^2.15.14",
"pinia": "^2.1.7",
"vue": "^2.7.16",
"vue-echarts": "^6.6.8",
"vue-router": "^3.6.5"
},
"devDependencies": {
"@types/node": "^18.19.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-legacy": "^5.2.0",
"@vitejs/plugin-vue2": "^2.3.1",
"@vue-macros/volar": "^0.18.16",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.20.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mockjs": "^1.1.0",
"postcss": "^8.4.33",
"prettier": "^2.8.8",
"sass": "^1.69.7",
"terser": "^5.26.0",
"typescript": "^4.9.5",
"unplugin-vue-components": "^0.22.12",
"unplugin-vue-define-options": "^1.4.2",
"vite": "^5.0.11",
"vite-plugin-mock": "^2.9.8",
"vue-eslint-parser": "^9.4.0",
"vue-tsc": "^0.39.5"
},
"lint-staged": {
"*.{vue,ts,tsx}": [
"eslint --ext .ts,.vue src"
]
}
}