forked from fermelli/laravel10-vue3-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 962 Bytes
/
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
{
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint --ext .js,.vue --fix resources/js",
"format": "prettier --write resources"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.2",
"axios": "^1.6.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-vue": "^9.19.2",
"laravel-vite-plugin": "^1.0.0",
"prettier": "^3.1.1",
"vite": "^5.0.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-vuetify": "^2.0.1"
},
"dependencies": {
"@mdi/font": "^7.4.47",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"pinia": "^2.1.7",
"vue": "^3.4.5",
"vue-router": "^4.2.5",
"vue-toastification": "^2.0.0-rc.5",
"vuetify": "^3.4.9"
}
}