-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.33 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
{
"name": "vue3-mini-template",
"type": "module",
"version": "1.0.0",
"private": true,
"packageManager": "[email protected]",
"description": "一个基于 Vue3、TypeScript、Vite6 的轻量级前端项目模板。",
"author": {
"name": "huangmingfu",
"email": "[email protected]",
"url": "https://github.com/huangmingfu/vue3-mini-template"
},
"license": "MIT",
"homepage": "https://github.com/huangmingfu/vue3-mini-template",
"repository": {
"type": "git",
"url": "https://github.com/huangmingfu/vue3-mini-template"
},
"bugs": "https://github.com/huangmingfu/vue3-mini-template/issues",
"keywords": [
"vue3-ts-template",
"vue3",
"template",
"vite6",
"typescript"
],
"scripts": {
"dev": "vite -m development",
"dev:test": "vite -m test",
"dev:pro": "vite -m production",
"build:dev": "pnpm vite build -m development",
"build:test": "pnpm vite build -m test",
"build:pro": "pnpm vite build -m production",
"preview:dev": "pnpm vite preview -m development",
"preview:test": "pnpm vite preview -m test",
"preview:pro": "pnpm vite preview -m production",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:inspector": "npx @eslint/config-inspector",
"clean": "rm -rf node_modules dist dist-*",
"deps:check": "pnpm outdated -r",
"deps:update": "pnpm update --latest",
"preinstall": "npx only-allow pnpm",
"postinstall": "npx simple-git-hooks"
},
"dependencies": {
"@vueuse/core": "^12.0.0",
"axios": "^1.7.9",
"dayjs": "^1.11.13",
"nprogress": "^0.2.0",
"pinia": "^2.3.0",
"pinia-plugin-persistedstate": "^4.2.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@types/node": "^22.10.2",
"@types/nprogress": "^0.2.3",
"@unocss/eslint-config": "^0.65.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vue/tsconfig": "^0.7.0",
"eslint-plugin-format": "^0.1.3",
"lint-staged": "^15.2.11",
"sass": "^1.83.0",
"simple-git-hooks": "^2.11.1",
"typescript": "~5.7.2",
"unocss": "^0.65.1",
"vite": "^6.0.5",
"vue-tsc": "^2.1.10"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}