-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.56 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
{
"name": "vue3-vite-ts-starter",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"build:test": "vue-tsc && vite build --mode test",
"build:prod": "vue-tsc && vite build --mode production",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"test": "vitest",
"preview": "vite preview",
"prepare": "husky install"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@vueuse/core": "9.13.0",
"axios": "1.3.4",
"element-plus": "2.3.1",
"pinia": "2.0.33",
"vue": "3.2.47",
"vue-router": "4.1.6"
},
"devDependencies": {
"@babel/core": "7.21.3",
"@babel/eslint-parser": "7.21.3",
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@types/node": "18.15.10",
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"@vitejs/plugin-vue": "4.1.0",
"@vue/eslint-config-typescript": "11.0.2",
"eslint": "8.36.0",
"eslint-config-alloy": "4.9.0",
"eslint-plugin-vue": "9.10.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.8.7",
"sass": "1.60.0",
"typescript": "4.9.5",
"unplugin-auto-import": "0.15.2",
"unplugin-mock": "1.0.3",
"unplugin-vue-components": "0.24.1",
"vite": "4.3.7",
"vitest": "0.29.7",
"vue-eslint-parser": "9.1.0",
"vue-tsc": "1.2.0"
},
"lint-staged": {
"**/*.js": [],
"**/*.!(*d.)ts?(x)": [
"prettier --write",
"npm run lint"
],
"*.vue": [
"prettier --write",
"npm run lint"
]
}
}