mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 10:10:48 +01:00
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.
24 lines
575 B
JSON
24 lines
575 B
JSON
{
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"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",
|
|
"axios": "^1.1.2",
|
|
"laravel-vite-plugin": "^0.8.0",
|
|
"postcss": "^8.4.31",
|
|
"tailwindcss": "^3.3.5",
|
|
"vite": "^4.0.0"
|
|
},
|
|
"dependencies": {
|
|
"flowbite": "^2.0.0",
|
|
"npm-run-all": "^4.1.5"
|
|
}
|
|
}
|