-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "vite-vue-ts",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "vue-tsc --noemit && eslint --fix src/**/*.{ts,js,vue} && stylelint --fix src/**/*.{ts,js,vue}",
"prepare": "husky install"
},
"dependencies": {
"vue": "^3.2.25"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.26.0",
"@vitejs/plugin-vue": "^4.2.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-vue": "^9.10.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"postcss": "^8.4.20",
"postcss-html": "^1.4.1",
"prettier": "^2.8.8",
"stylelint": "^15.3.0",
"stylelint-config-recess-order": "^4.2.0",
"stylelint-config-standard-vue": "^1.0.0",
"tailwindcss": "^3.2.4",
"typescript": "^5.0.4",
"vite": "^4.3.3",
"vue-tsc": "^1.4.4"
},
"lint-staged": {
"src/**/*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"src/**/*.{scss,less,styl,html}": [
"stylelint --fix",
"prettier --write"
],
"*.vue": [
"eslint --fix",
"stylelint --fix",
"prettier --write"
]
}
}