generated from AchoBeta/achobeta-frontend-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.51 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
{
"name": "achobeta-pluto-front",
"type": "module",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "lint-staged --allow-empty",
"lint:fix": "eslint . --fix",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@fortawesome/fontawesome-free": "^6.6.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@vueuse/core": "^10.7.2",
"autoprefixer": "^10.4.17",
"axios": "^1.7.7",
"element-plus": "^2.8.7",
"normalize.css": "^8.0.1",
"pinia": "^2.2.6",
"pinia-plugin-persistedstate": "^4.1.2",
"vue": "^3.5.12",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.3",
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@types/node": "^22.9.0",
"@vitejs/plugin-vue": "^4.6.2",
"eslint": "^9.14.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"sass": "1.78.0",
"typescript": "^5.6.3",
"unplugin-auto-import": "^0.18.3",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.10",
"vue-tsc": "^1.8.25"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.vue": [
"eslint --fix"
]
}
}