-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 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
{
"name": "vue3-dev-template",
"type": "module",
"private": true,
"packageManager": "pnpm@9.15.4",
"description": "A `quick-start` Vue3 Template",
"author": "Hubery Yang",
"license": "MIT",
"homepage": "https://github.com/Hub-yang/my-vue-dev-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Hub-yang/my-vue-dev-template.git"
},
"bugs": {
"url": "https://github.com/Hub-yang/my-vue-dev-template/issues"
},
"scripts": {
"dev": "vite --open",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"taze": "npx taze major -r",
"prepare": "husky",
"commitlint": "commitlint --edit"
},
"dependencies": {
"@vueuse/core": "^12.4.0",
"prismjs": "^1.29.0",
"vite-svg-loader": "^5.1.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@iconify-json/carbon": "^1.2.5",
"@types/node": "^22.10.7",
"@types/prismjs": "^1.26.5",
"@unocss/eslint-plugin": "^65.4.2",
"@unocss/reset": "^65.4.2",
"@vitejs/plugin-vue": "^5.2.1",
"eslint": "^9.18.0",
"eslint-plugin-format": "^1.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"sass-embedded": "^1.83.4",
"terser": "^5.37.0",
"typescript": "^5.7.3",
"unocss": "^65.4.2",
"unplugin-auto-import": "^19.0.0",
"unplugin-vue-components": "^28.0.0",
"unplugin-vue-router": "^0.10.9",
"vite": "^6.0.7",
"vite-plugin-vue-devtools": "^7.7.0",
"vue-tsc": "^2.2.0"
},
"lint-staged": {
"*": "eslint . --fix"
}
}