forked from soybeanjs/vite-vue3-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "vite-vue3-ts-starter",
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "npm run typecheck && vite build",
"preview": "vite preview",
"typecheck": "vue-tsc --noEmit --skipLibCheck",
"lint": "eslint . --fix",
"commit": "pnpm cz",
"prepare": "husky install"
},
"dependencies": {
"pinia": "^2.0.23",
"vue": "^3.2.41",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/node": "18.8.0",
"@vitejs/plugin-vue": "^3.1.2",
"@vitejs/plugin-vue-jsx": "^2.0.1",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"eslint": "^8.26.0",
"eslint-config-soybeanjs-vue": "^0.1.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"sass": "^1.55.0",
"typescript": "^4.8.4",
"unocss": "^0.45.30",
"unplugin-vue-components": "^0.22.9",
"vite": "^3.1.8",
"vue-tsc": "^1.0.9"
},
"lint-staged": {
"*.{vue,js,jsx,ts,tsx,json}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}