-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
105 lines (105 loc) · 2.82 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "vite-vue-js-starter-template",
"description": "Vue3 JavaScript Starter Project For Vite.",
"version": "0.0.0",
"type": "module",
"packageManager": "[email protected]",
"license": "MIT",
"author": {
"name": "ElanYoung",
"email": "[email protected]",
"url": "https://doc.starimmortal.com"
},
"homepage": "https://elanyoung.github.io/vite-vue-js-starter-template",
"repository": {
"type": "git",
"url": "[email protected]:ElanYoung/vite-vue-js-starter-template.git"
},
"bugs": {
"url": "https://github.com/ElanYoung/vite-vue-js-starter-template/issues"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,js,ts,tsx}\"",
"lint:fix": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,js,ts,tsx}\" --fix",
"stylelint": "stylelint \"**/*.{html,vue,css,less}\" --cache",
"stylelint:fix": "stylelint \"**/*.{html,vue,css,less}\" --cache --fix",
"prepare": "husky install"
},
"dependencies": {
"@vueuse/core": "^10.6.1",
"axios": "^1.6.2",
"dayjs": "^1.11.10",
"mitt": "^3.0.1",
"pinia": "^2.1.7",
"tdesign-vue-next": "^1.7.0",
"vue": "^3.3.9",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@eslint/js": "^8.54.0",
"@vitejs/plugin-vue": "^4.5.0",
"autoprefixer": "^10.4.16",
"cz-git": "^1.7.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-define-config": "^2.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vue": "^9.18.1",
"husky": "^8.0.3",
"less": "^4.2.0",
"lint-staged": "^15.1.0",
"postcss-html": "^1.5.0",
"postcss-less": "^6.0.0",
"prettier": "^3.1.0",
"stylelint": "^15.11.0",
"stylelint-config-recess-order": "^4.4.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-less": "^2.0.0",
"unplugin-auto-import": "^0.17.1",
"unplugin-icons": "^0.17.4",
"unplugin-vue-components": "^0.25.2",
"vite": "^5.0.2",
"vue-eslint-parser": "^9.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.vue": [
"prettier --write",
"eslint --fix",
"stylelint --fix"
],
"*.{html,sass,scss,less}": [
"prettier --write",
"stylelint --fix"
],
"package.json": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"engines": {
"node": "^18.0.0 || >=20.0.0",
"pnpm": ">=8.6.10"
}
}