generated from jstarter/vite-vue-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
74 lines (74 loc) · 2.05 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
{
"name": "peppa-pig",
"packageManager": "[email protected]",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "rimraf dist && vue-tsc && vite build",
"preview": "vite preview",
"gitee": "node scripts/gitee.js",
"push": "git push && pnpm gitee",
"lint": "eslint --ignore-path .gitignore .",
"lint-fix": "eslint --fix --ignore-path .gitignore .",
"commit": "cz"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit $1"
},
"lint-staged": {
"*.{js,cjs,ts,tsx,vue}": [
"eslint --fix"
]
},
"dependencies": {
"@vueuse/core": "^10.7.2",
"vue": "^3.3.11",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@iconify-json/mdi": "^1.1.64",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitejs/plugin-vue": "^4.5.2",
"autoprefixer": "^10.4.17",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^4.1.0",
"cz-conventional-changelog": "^3.3.0",
"daisyui": "^4.6.0",
"eruda": "^3.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.20.1",
"lint-staged": "^15.2.0",
"postcss": "^8.4.33",
"postcss-preset-env": "^9.3.0",
"rimraf": "^5.0.5",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.70.0",
"shelljs": "^0.8.5",
"simple-git-hooks": "^2.9.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"unplugin-auto-import": "^0.17.3",
"unplugin-icons": "^0.18.2",
"unplugin-vue-components": "^0.26.0",
"unplugin-vue-router": "^0.7.0",
"vite": "^5.0.13",
"vitest": "^1.5.0",
"vue-tsc": "^1.8.25"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}