mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 10:10:48 +01:00
This commit adds the necessary changes to the `composer.json` file to include the `laravel/octane` package as a dependency. It also introduces a new `config/octane.php` file that contains the configuration for Octane's server, HTTPS settings, event listeners, warm/flush bindings, Swoole tables, cache table, file watching, garbage collection threshold, and maximum execution time. The added dependencies in `package.json` include `chokidar`, which is used for file watching functionality. These changes enable the use of Laravel Octane for improved performance and efficiency in handling requests.
29 lines
797 B
JSON
29 lines
797 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",
|
|
"laravel-pint": "./vendor/bin/pint"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/aspect-ratio": "^0.4.2",
|
|
"@tailwindcss/typography": "^0.5.10",
|
|
"autoprefixer": "^10.4.16",
|
|
"axios": "^1.1.2",
|
|
"laravel-vite-plugin": "^0.8.0",
|
|
"postcss": "^8.4.31",
|
|
"tailwindcss": "^3.3.5",
|
|
"vite": "^4.5.1"
|
|
},
|
|
"dependencies": {
|
|
"chokidar": "^3.5.3",
|
|
"flowbite": "^2.0.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"tailwind-capitalize-first-letter": "^1.0.4"
|
|
}
|
|
}
|