mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 10:10:48 +01:00
🌟 Added dev-laravel, dev-node, and dev-all scripts 🚀
Added new scripts to package.json for easier development. The new scripts include "dev-laravel" for serving Laravel, "dev-node" for running npm dev, and "dev-all" for running both simultaneously. Also added "npm-run-all" as a dependency.
This commit is contained in:
@@ -3,7 +3,10 @@
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build"
|
||||
"build": "vite build",
|
||||
"dev-laravel": "php artisan serve",
|
||||
"dev-node": "npm run dev",
|
||||
"dev-all": "npm-run-all -p dev-laravel dev-node"
|
||||
},
|
||||
"devDependencies": {
|
||||
"autoprefixer": "^10.4.16",
|
||||
@@ -14,6 +17,7 @@
|
||||
"vite": "^4.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"flowbite": "^2.0.0"
|
||||
"flowbite": "^2.0.0",
|
||||
"npm-run-all": "^4.1.5"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user