-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 793 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"private": true,
"type": "module",
"scripts": {
"start": "concurrently \"php artisan serve\" \"npm run dev\"",
"migrate-and-seed": "php artisan migrate:fresh && php artisan db:seed",
"dev": "vite",
"build": "vite build",
"serve": "concurrently \"php artisan serve\" \"npm run dev\" \"php artisan migrate:fresh\" \"php artisan db:seed\""
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.2",
"alpinejs": "^3.4.2",
"autoprefixer": "^10.4.2",
"axios": "^1.7.4",
"concurrently": "^9.0.1",
"laravel-echo": "^1.16.1",
"laravel-vite-plugin": "^1.0",
"postcss": "^8.4.31",
"pusher-js": "^8.4.0-rc2",
"tailwindcss": "^3.1.0",
"vite": "^5.0"
}
}