-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.79 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
{
"name": "vue3-ts-vite-starter",
"version": "0.0.0",
"description": "A template for Vue with TypeScript, base on Vite.",
"author": "chengpeiquan <[email protected]>",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --mode dev --host",
"dev:test": "vite --mode test --host",
"dev:prod": "vite --mode prod --host",
"build": "vue-tsc --noEmit && vite --mode prod build",
"build:dev": "vue-tsc --noEmit && vite --mode dev build",
"build:test": "vue-tsc --noEmit && vite --mode test build",
"preview": "vite preview --host",
"lint": "eslint src",
"format": "prettier --write src",
"mirror:get": "npm config get registry",
"mirror:set": "npm config set registry https://registry.npmmirror.com",
"mirror:rm": "npm config rm registry",
"backup": "git add . && git commit -m \"chore: backup\" && git push",
"up": "npx npm-check-updates -u",
"prepare": "husky install"
},
"dependencies": {
"@bassist/progress": "^0.2.2",
"@bassist/utils": "^0.14.0",
"pinia": "^2.1.7",
"vue": "^3.4.15",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@bassist/eslint": "^0.5.0",
"@bassist/tsconfig": "^0.1.1",
"@bassist/uno": "^0.1.3",
"@types/node": "^20.11.5",
"@vitejs/plugin-vue": "^5.0.3",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"less": "^4.2.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3",
"unocss": "^0.58.3",
"unplugin-auto-import": "^0.17.3",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.11",
"vite-plugin-banner": "^0.7.1",
"vite-plugin-html": "^3.2.2",
"vue-tsc": "^1.8.27"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}