-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
29 lines (29 loc) · 878 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
{
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"start": "concurrently \"npm run dev\" \"php artisan serve\" \"nodemon server.js\"",
"clean": "php artisan optimize:clear && php artisan view:clear && php artisan route:clear && php artisan config:clear"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.2",
"alpinejs": "^3.4.2",
"autoprefixer": "^10.4.2",
"axios": "^1.6.4",
"daisyui": "^4.11.1",
"laravel-vite-plugin": "^1.0",
"postcss": "^8.4.31",
"tailwindcss": "^3.1.0",
"vite": "^5.0"
},
"dependencies": {
"aos": "^2.3.4",
"concurrently": "^8.2.2",
"express": "^4.19.2",
"nodemon": "^3.1.2",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5"
}
}