-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "vite-vue-ts-project",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "vue-tsc && vite build",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts,.vue --fix",
"prepare": "husky install",
"prettier": "prettier -c -w .",
"preview": "vite preview",
"start": "vite"
},
"lint-staged": {
"**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts,vue,html,css,less,sass,scss,json,md,mdx}": [
"prettier -c -w"
]
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"dayjs": "^1.11.10",
"element-plus": "^2.4.2",
"vue": "^3.3.9",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@ghlandy/eslint-config-prettier": "^0.1.1",
"@ghlandy/prettier-config": "^0.5.1",
"@rushstack/eslint-patch": "^1.6.0",
"@vitejs/plugin-vue": "^4.5.0",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@volar/vue-typescript": "^1.6.5",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"eslint": "^8.54.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.18.1",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-packagejson": "^2.4.6",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"typescript": "^5.3.2",
"unplugin-auto-import": "^0.16.7",
"unplugin-vue-components": "^0.25.2",
"vite": "^4.5.0",
"vue-tsc": "^1.8.22"
}
}