-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.22 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
95
96
97
98
99
100
{
"name": "vue3-ts-template",
"description": "一套基于vue3、ts、vite6的项目模板,帮助快速开发",
"version": "1.0.0",
"type": "module",
"private": "true",
"packageManager": "pnpm@9.14.2",
"author": {
"name": "huangmingfu",
"email": "212149997@qq.com",
"url": "https://github.com/huangmingfu/vue3-ts-template"
},
"license": "MIT",
"homepage": "https://github.com/huangmingfu/vue3-ts-template",
"repository": {
"type": "git",
"url": "https://github.com/huangmingfu/vue3-ts-template"
},
"bugs": "https://github.com/huangmingfu/vue3-ts-template/issues",
"keywords": [
"vue3-ts-template",
"vue3",
"template",
"vite6",
"typescript"
],
"scripts": {
"dev": "vite --mode dev",
"dev:test": "vite --mode test",
"dev:pro": "vite --mode pro",
"build:dev": "pnpm vite build --mode dev",
"build:test": "pnpm vite build --mode test",
"build:pro": "pnpm vite build --mode pro",
"preview:dev": "pnpm vite preview --mode dev",
"preview:test": "pnpm vite preview --mode test",
"preview:pro": "pnpm vite preview --mode pro",
"ts:check": "vue-tsc --noEmit --skipLibCheck",
"lint:eslint": "eslint --max-warnings 0 \"**/*.{ts,tsx,js,jsx,cjs,mjs,vue}\" --fix --cache",
"lint:format": "prettier --write --cache \"**/*.{ts,tsx,js,jsx,cjs,mjs,html,vue,json,css,scss,less}\"",
"lint:style": "stylelint \"**/*.{css,scss,less}\" --fix --cache",
"lint:all": "pnpm run lint:eslint && pnpm run lint:style && pnpm run lint:format",
"prepare": "husky install",
"postinstall": "patch-package",
"preinstall": "npx only-allow pnpm",
"clean": "rm -rf node_modules dist dist-*",
"deps:check": "pnpm outdated -r",
"deps:update": "pnpm update --latest"
},
"dependencies": {
"@vueuse/core": "^12.0.0",
"axios": "^1.7.9",
"dayjs": "^1.11.13",
"mitt": "^3.0.1",
"patch-package": "^8.0.0",
"pinia": "^2.3.0",
"pinia-plugin-persistedstate": "^4.2.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/node": "^22.10.2",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"eslint": "^9.17.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.32.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"postcss": "^8.4.49",
"postcss-html": "^1.7.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"sass": "^1.83.0",
"stylelint": "^16.12.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-scss": "^6.10.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"vite": "^6.0.5",
"vite-plugin-checker": "^0.8.0",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.1.10"
},
"engines": {
"node": "^18.0.0 || ^20.0.0 || >=22.0.0",
"pnpm": ">=9"
},
"volta": {
"node": "20.18.0"
}
}