-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "vue3-vite-ts",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint:fix": "eslint . --fix && prettier --write ."
},
"dependencies": {
"@element-plus/icons-vue": "^2.1.0",
"element-plus": "^2.3.7",
"pinia": "^2.1.4",
"vue": "^3.2.47",
"vue-router": "^4.0.13"
},
"devDependencies": {
"@babel/core": "^7.22.6",
"@babel/eslint-parser": "^7.22.6",
"@types/node": "^20.3.3",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitejs/plugin-vue": "^4.1.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.15.1",
"prettier": "^2.8.8",
"sass": "^1.63.6",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vite-plugin-eslint": "^1.8.1",
"vue-tsc": "^1.4.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}