-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.5 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
{
"name": "vtiuse",
"private": false,
"version": "1.0.0",
"description": "Project template based on vue3 + ts",
"type": "module",
"license": "MIT",
"author": "JohnsonXin",
"bugs": "https://github.com/CodeGetters/vtiuse/issues",
"keywords": [
"vue3",
"TS",
"template",
"Pina",
"vue-router",
"i18n",
"vueuse"
],
"repository": {
"type": "git",
"url": "[email protected]:CodeGetters/vtiuse.git"
},
"scripts": {
"dev": "vite --mode development --open",
"build": "vue-tsc && vite build --mode production",
"preview": "vite preview",
"format": "prettier --write ./**/*.{vue,ts,tsx,js,jsx,css,less,scss,json,md}",
"prepare": "husky install",
"cz": "git cz",
"test": "vitest",
"typecheck": "vue-tsc --noEmit",
"coverage": "vitest run --coverage",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx --fix"
},
"lint-staged": {
"*.{js,vue,ts,jsx,tsx}": [
"prettier --write"
],
"*.{html,css,less,scss,md}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"dependencies": {
"@vueuse/core": "^10.7.2",
"axios": "^1.6.5",
"element-plus": "^2.5.2",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"vue": "^3.4.15",
"vue-i18n": "9.9.0",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@types/node": "^20.11.5",
"@types/nprogress": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@unocss/preset-attributify": "^0.58.3",
"@unocss/preset-icons": "^0.58.3",
"@unocss/preset-typography": "^0.58.3",
"@vitejs/plugin-vue": "^5.0.3",
"@vitest/coverage-istanbul": "^1.2.1",
"@vue/test-utils": "^2.4.3",
"@vue/tsconfig": "^0.5.1",
"cz-git": "^1.8.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.20.1",
"happy-dom": "^13.2.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"sass": "^1.70.0",
"swagger-typescript-api": "^13.0.3",
"typescript": "^5.3.3",
"unocss": "^0.58.3",
"unplugin-auto-import": "^0.17.3",
"vite": "^5.0.12",
"vite-plugin-checker": "^0.6.2",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-vue-devtools": "^7.0.11",
"vitest": "^1.2.1",
"vue-tsc": "^1.8.27"
}
}