├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Http │ └── Controllers │ │ └── Controller.php ├── Models │ └── User.php └── Providers │ └── AppServiceProvider.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── cache.php ├── database.php ├── filesystems.php ├── logging.php ├── mail.php ├── queue.php ├── services.php └── session.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 0001_01_01_000000_create_users_table.php │ ├── 0001_01_01_000001_create_cache_table.php │ └── 0001_01_01_000002_create_jobs_table.php └── seeders │ └── DatabaseSeeder.php ├── package-lock.json ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── favicon.ico ├── index.php └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js └── views │ ├── about │ └── index.blade.php │ ├── components │ └── layout.blade.php │ ├── teas │ ├── index.blade.php │ └── teadetail.blade.php │ └── welcome.blade.php ├── routes ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ ├── private │ │ └── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── Feature │ └── ExampleTest.php ├── Pest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | indent_size = 4 7 | indent_style = space 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | 17 | [docker-compose.yml] 18 | indent_size = 4 19 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | APP_NAME=Laravel 2 | APP_ENV=local 3 | APP_KEY= 4 | APP_DEBUG=true 5 | APP_TIMEZONE=UTC 6 | APP_URL=http://localhost 7 | 8 | APP_LOCALE=en 9 | APP_FALLBACK_LOCALE=en 10 | APP_FAKER_LOCALE=en_US 11 | 12 | APP_MAINTENANCE_DRIVER=file 13 | # APP_MAINTENANCE_STORE=database 14 | 15 | PHP_CLI_SERVER_WORKERS=4 16 | 17 | BCRYPT_ROUNDS=12 18 | 19 | LOG_CHANNEL=stack 20 | LOG_STACK=single 21 | LOG_DEPRECATIONS_CHANNEL=null 22 | LOG_LEVEL=debug 23 | 24 | DB_CONNECTION=sqlite 25 | # DB_HOST=127.0.0.1 26 | # DB_PORT=3306 27 | # DB_DATABASE=laravel 28 | # DB_USERNAME=root 29 | # DB_PASSWORD= 30 | 31 | SESSION_DRIVER=database 32 | SESSION_LIFETIME=120 33 | SESSION_ENCRYPT=false 34 | SESSION_PATH=/ 35 | SESSION_DOMAIN=null 36 | 37 | BROADCAST_CONNECTION=log 38 | FILESYSTEM_DISK=local 39 | QUEUE_CONNECTION=database 40 | 41 | CACHE_STORE=database 42 | CACHE_PREFIX= 43 | 44 | MEMCACHED_HOST=127.0.0.1 45 | 46 | REDIS_CLIENT=phpredis 47 | REDIS_HOST=127.0.0.1 48 | REDIS_PASSWORD=null 49 | REDIS_PORT=6379 50 | 51 | MAIL_MAILER=log 52 | MAIL_HOST=127.0.0.1 53 | MAIL_PORT=2525 54 | MAIL_USERNAME=null 55 | MAIL_PASSWORD=null 56 | MAIL_ENCRYPTION=null 57 | MAIL_FROM_ADDRESS="hello@example.com" 58 | MAIL_FROM_NAME="${APP_NAME}" 59 | 60 | AWS_ACCESS_KEY_ID= 61 | AWS_SECRET_ACCESS_KEY= 62 | AWS_DEFAULT_REGION=us-east-1 63 | AWS_BUCKET= 64 | AWS_USE_PATH_STYLE_ENDPOINT=false 65 | 66 | VITE_APP_NAME="${APP_NAME}" 67 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | 3 | *.blade.php diff=html 4 | *.css diff=css 5 | *.html diff=html 6 | *.md diff=markdown 7 | *.php diff=php 8 | 9 | /.github export-ignore 10 | CHANGELOG.md export-ignore 11 | .styleci.yml export-ignore 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.phpunit.cache 2 | /node_modules 3 | /public/build 4 | /public/hot 5 | /public/storage 6 | /storage/*.key 7 | /storage/pail 8 | /vendor 9 | .env 10 | .env.backup 11 | .env.production 12 | .phpactor.json 13 | .phpunit.result.cache 14 | Homestead.json 15 | Homestead.yaml 16 | auth.json 17 | npm-debug.log 18 | yarn-error.log 19 | /.fleet 20 | /.idea 21 | /.vscode 22 | /.zed 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Laravel Logo

2 | 3 |

4 | Build Status 5 | Total Downloads 6 | Latest Stable Version 7 | License 8 |

9 | 10 | ## About Laravel 11 | 12 | Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as: 13 | 14 | - [Simple, fast routing engine](https://laravel.com/docs/routing). 15 | - [Powerful dependency injection container](https://laravel.com/docs/container). 16 | - Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage. 17 | - Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent). 18 | - Database agnostic [schema migrations](https://laravel.com/docs/migrations). 19 | - [Robust background job processing](https://laravel.com/docs/queues). 20 | - [Real-time event broadcasting](https://laravel.com/docs/broadcasting). 21 | 22 | Laravel is accessible, powerful, and provides tools required for large, robust applications. 23 | 24 | ## Learning Laravel 25 | 26 | Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. 27 | 28 | You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch. 29 | 30 | If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library. 31 | 32 | ## Laravel Sponsors 33 | 34 | We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the [Laravel Partners program](https://partners.laravel.com). 35 | 36 | ### Premium Partners 37 | 38 | - **[Vehikl](https://vehikl.com/)** 39 | - **[Tighten Co.](https://tighten.co)** 40 | - **[WebReinvent](https://webreinvent.com/)** 41 | - **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** 42 | - **[64 Robots](https://64robots.com)** 43 | - **[Curotec](https://www.curotec.com/services/technologies/laravel/)** 44 | - **[Cyber-Duck](https://cyber-duck.co.uk)** 45 | - **[DevSquad](https://devsquad.com/hire-laravel-developers)** 46 | - **[Jump24](https://jump24.co.uk)** 47 | - **[Redberry](https://redberry.international/laravel/)** 48 | - **[Active Logic](https://activelogic.com)** 49 | - **[byte5](https://byte5.de)** 50 | - **[OP.GG](https://op.gg)** 51 | 52 | ## Contributing 53 | 54 | Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions). 55 | 56 | ## Code of Conduct 57 | 58 | In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct). 59 | 60 | ## Security Vulnerabilities 61 | 62 | If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed. 63 | 64 | ## License 65 | 66 | The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). 67 | -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | */ 13 | use HasFactory, Notifiable; 14 | 15 | /** 16 | * The attributes that are mass assignable. 17 | * 18 | * @var array 19 | */ 20 | protected $fillable = [ 21 | 'name', 22 | 'email', 23 | 'password', 24 | ]; 25 | 26 | /** 27 | * The attributes that should be hidden for serialization. 28 | * 29 | * @var array 30 | */ 31 | protected $hidden = [ 32 | 'password', 33 | 'remember_token', 34 | ]; 35 | 36 | /** 37 | * Get the attributes that should be cast. 38 | * 39 | * @return array 40 | */ 41 | protected function casts(): array 42 | { 43 | return [ 44 | 'email_verified_at' => 'datetime', 45 | 'password' => 'hashed', 46 | ]; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- 1 | handleCommand(new ArgvInput); 14 | 15 | exit($status); 16 | -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- 1 | withRouting( 9 | web: __DIR__.'/../routes/web.php', 10 | commands: __DIR__.'/../routes/console.php', 11 | health: '/up', 12 | ) 13 | ->withMiddleware(function (Middleware $middleware) { 14 | // 15 | }) 16 | ->withExceptions(function (Exceptions $exceptions) { 17 | // 18 | })->create(); 19 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- 1 | env('APP_NAME', 'Laravel'), 17 | 18 | /* 19 | |-------------------------------------------------------------------------- 20 | | Application Environment 21 | |-------------------------------------------------------------------------- 22 | | 23 | | This value determines the "environment" your application is currently 24 | | running in. This may determine how you prefer to configure various 25 | | services the application utilizes. Set this in your ".env" file. 26 | | 27 | */ 28 | 29 | 'env' => env('APP_ENV', 'production'), 30 | 31 | /* 32 | |-------------------------------------------------------------------------- 33 | | Application Debug Mode 34 | |-------------------------------------------------------------------------- 35 | | 36 | | When your application is in debug mode, detailed error messages with 37 | | stack traces will be shown on every error that occurs within your 38 | | application. If disabled, a simple generic error page is shown. 39 | | 40 | */ 41 | 42 | 'debug' => (bool) env('APP_DEBUG', false), 43 | 44 | /* 45 | |-------------------------------------------------------------------------- 46 | | Application URL 47 | |-------------------------------------------------------------------------- 48 | | 49 | | This URL is used by the console to properly generate URLs when using 50 | | the Artisan command line tool. You should set this to the root of 51 | | the application so that it's available within Artisan commands. 52 | | 53 | */ 54 | 55 | 'url' => env('APP_URL', 'http://localhost'), 56 | 57 | /* 58 | |-------------------------------------------------------------------------- 59 | | Application Timezone 60 | |-------------------------------------------------------------------------- 61 | | 62 | | Here you may specify the default timezone for your application, which 63 | | will be used by the PHP date and date-time functions. The timezone 64 | | is set to "UTC" by default as it is suitable for most use cases. 65 | | 66 | */ 67 | 68 | 'timezone' => env('APP_TIMEZONE', 'UTC'), 69 | 70 | /* 71 | |-------------------------------------------------------------------------- 72 | | Application Locale Configuration 73 | |-------------------------------------------------------------------------- 74 | | 75 | | The application locale determines the default locale that will be used 76 | | by Laravel's translation / localization methods. This option can be 77 | | set to any locale for which you plan to have translation strings. 78 | | 79 | */ 80 | 81 | 'locale' => env('APP_LOCALE', 'en'), 82 | 83 | 'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'), 84 | 85 | 'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'), 86 | 87 | /* 88 | |-------------------------------------------------------------------------- 89 | | Encryption Key 90 | |-------------------------------------------------------------------------- 91 | | 92 | | This key is utilized by Laravel's encryption services and should be set 93 | | to a random, 32 character string to ensure that all encrypted values 94 | | are secure. You should do this prior to deploying the application. 95 | | 96 | */ 97 | 98 | 'cipher' => 'AES-256-CBC', 99 | 100 | 'key' => env('APP_KEY'), 101 | 102 | 'previous_keys' => [ 103 | ...array_filter( 104 | explode(',', env('APP_PREVIOUS_KEYS', '')) 105 | ), 106 | ], 107 | 108 | /* 109 | |-------------------------------------------------------------------------- 110 | | Maintenance Mode Driver 111 | |-------------------------------------------------------------------------- 112 | | 113 | | These configuration options determine the driver used to determine and 114 | | manage Laravel's "maintenance mode" status. The "cache" driver will 115 | | allow maintenance mode to be controlled across multiple machines. 116 | | 117 | | Supported drivers: "file", "cache" 118 | | 119 | */ 120 | 121 | 'maintenance' => [ 122 | 'driver' => env('APP_MAINTENANCE_DRIVER', 'file'), 123 | 'store' => env('APP_MAINTENANCE_STORE', 'database'), 124 | ], 125 | 126 | ]; 127 | -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- 1 | [ 17 | 'guard' => env('AUTH_GUARD', 'web'), 18 | 'passwords' => env('AUTH_PASSWORD_BROKER', 'users'), 19 | ], 20 | 21 | /* 22 | |-------------------------------------------------------------------------- 23 | | Authentication Guards 24 | |-------------------------------------------------------------------------- 25 | | 26 | | Next, you may define every authentication guard for your application. 27 | | Of course, a great default configuration has been defined for you 28 | | which utilizes session storage plus the Eloquent user provider. 29 | | 30 | | All authentication guards have a user provider, which defines how the 31 | | users are actually retrieved out of your database or other storage 32 | | system used by the application. Typically, Eloquent is utilized. 33 | | 34 | | Supported: "session" 35 | | 36 | */ 37 | 38 | 'guards' => [ 39 | 'web' => [ 40 | 'driver' => 'session', 41 | 'provider' => 'users', 42 | ], 43 | ], 44 | 45 | /* 46 | |-------------------------------------------------------------------------- 47 | | User Providers 48 | |-------------------------------------------------------------------------- 49 | | 50 | | All authentication guards have a user provider, which defines how the 51 | | users are actually retrieved out of your database or other storage 52 | | system used by the application. Typically, Eloquent is utilized. 53 | | 54 | | If you have multiple user tables or models you may configure multiple 55 | | providers to represent the model / table. These providers may then 56 | | be assigned to any extra authentication guards you have defined. 57 | | 58 | | Supported: "database", "eloquent" 59 | | 60 | */ 61 | 62 | 'providers' => [ 63 | 'users' => [ 64 | 'driver' => 'eloquent', 65 | 'model' => env('AUTH_MODEL', App\Models\User::class), 66 | ], 67 | 68 | // 'users' => [ 69 | // 'driver' => 'database', 70 | // 'table' => 'users', 71 | // ], 72 | ], 73 | 74 | /* 75 | |-------------------------------------------------------------------------- 76 | | Resetting Passwords 77 | |-------------------------------------------------------------------------- 78 | | 79 | | These configuration options specify the behavior of Laravel's password 80 | | reset functionality, including the table utilized for token storage 81 | | and the user provider that is invoked to actually retrieve users. 82 | | 83 | | The expiry time is the number of minutes that each reset token will be 84 | | considered valid. This security feature keeps tokens short-lived so 85 | | they have less time to be guessed. You may change this as needed. 86 | | 87 | | The throttle setting is the number of seconds a user must wait before 88 | | generating more password reset tokens. This prevents the user from 89 | | quickly generating a very large amount of password reset tokens. 90 | | 91 | */ 92 | 93 | 'passwords' => [ 94 | 'users' => [ 95 | 'provider' => 'users', 96 | 'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'), 97 | 'expire' => 60, 98 | 'throttle' => 60, 99 | ], 100 | ], 101 | 102 | /* 103 | |-------------------------------------------------------------------------- 104 | | Password Confirmation Timeout 105 | |-------------------------------------------------------------------------- 106 | | 107 | | Here you may define the amount of seconds before a password confirmation 108 | | window expires and users are asked to re-enter their password via the 109 | | confirmation screen. By default, the timeout lasts for three hours. 110 | | 111 | */ 112 | 113 | 'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800), 114 | 115 | ]; 116 | -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- 1 | env('CACHE_STORE', 'database'), 19 | 20 | /* 21 | |-------------------------------------------------------------------------- 22 | | Cache Stores 23 | |-------------------------------------------------------------------------- 24 | | 25 | | Here you may define all of the cache "stores" for your application as 26 | | well as their drivers. You may even define multiple stores for the 27 | | same cache driver to group types of items stored in your caches. 28 | | 29 | | Supported drivers: "array", "database", "file", "memcached", 30 | | "redis", "dynamodb", "octane", "null" 31 | | 32 | */ 33 | 34 | 'stores' => [ 35 | 36 | 'array' => [ 37 | 'driver' => 'array', 38 | 'serialize' => false, 39 | ], 40 | 41 | 'database' => [ 42 | 'driver' => 'database', 43 | 'connection' => env('DB_CACHE_CONNECTION'), 44 | 'table' => env('DB_CACHE_TABLE', 'cache'), 45 | 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'), 46 | 'lock_table' => env('DB_CACHE_LOCK_TABLE'), 47 | ], 48 | 49 | 'file' => [ 50 | 'driver' => 'file', 51 | 'path' => storage_path('framework/cache/data'), 52 | 'lock_path' => storage_path('framework/cache/data'), 53 | ], 54 | 55 | 'memcached' => [ 56 | 'driver' => 'memcached', 57 | 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), 58 | 'sasl' => [ 59 | env('MEMCACHED_USERNAME'), 60 | env('MEMCACHED_PASSWORD'), 61 | ], 62 | 'options' => [ 63 | // Memcached::OPT_CONNECT_TIMEOUT => 2000, 64 | ], 65 | 'servers' => [ 66 | [ 67 | 'host' => env('MEMCACHED_HOST', '127.0.0.1'), 68 | 'port' => env('MEMCACHED_PORT', 11211), 69 | 'weight' => 100, 70 | ], 71 | ], 72 | ], 73 | 74 | 'redis' => [ 75 | 'driver' => 'redis', 76 | 'connection' => env('REDIS_CACHE_CONNECTION', 'cache'), 77 | 'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'), 78 | ], 79 | 80 | 'dynamodb' => [ 81 | 'driver' => 'dynamodb', 82 | 'key' => env('AWS_ACCESS_KEY_ID'), 83 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 84 | 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 85 | 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), 86 | 'endpoint' => env('DYNAMODB_ENDPOINT'), 87 | ], 88 | 89 | 'octane' => [ 90 | 'driver' => 'octane', 91 | ], 92 | 93 | ], 94 | 95 | /* 96 | |-------------------------------------------------------------------------- 97 | | Cache Key Prefix 98 | |-------------------------------------------------------------------------- 99 | | 100 | | When utilizing the APC, database, memcached, Redis, and DynamoDB cache 101 | | stores, there might be other applications using the same cache. For 102 | | that reason, you may prefix every cache key to avoid collisions. 103 | | 104 | */ 105 | 106 | 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'), 107 | 108 | ]; 109 | -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- 1 | env('DB_CONNECTION', 'sqlite'), 20 | 21 | /* 22 | |-------------------------------------------------------------------------- 23 | | Database Connections 24 | |-------------------------------------------------------------------------- 25 | | 26 | | Below are all of the database connections defined for your application. 27 | | An example configuration is provided for each database system which 28 | | is supported by Laravel. You're free to add / remove connections. 29 | | 30 | */ 31 | 32 | 'connections' => [ 33 | 34 | 'sqlite' => [ 35 | 'driver' => 'sqlite', 36 | 'url' => env('DB_URL'), 37 | 'database' => env('DB_DATABASE', database_path('database.sqlite')), 38 | 'prefix' => '', 39 | 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), 40 | 'busy_timeout' => null, 41 | 'journal_mode' => null, 42 | 'synchronous' => null, 43 | ], 44 | 45 | 'mysql' => [ 46 | 'driver' => 'mysql', 47 | 'url' => env('DB_URL'), 48 | 'host' => env('DB_HOST', '127.0.0.1'), 49 | 'port' => env('DB_PORT', '3306'), 50 | 'database' => env('DB_DATABASE', 'laravel'), 51 | 'username' => env('DB_USERNAME', 'root'), 52 | 'password' => env('DB_PASSWORD', ''), 53 | 'unix_socket' => env('DB_SOCKET', ''), 54 | 'charset' => env('DB_CHARSET', 'utf8mb4'), 55 | 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'), 56 | 'prefix' => '', 57 | 'prefix_indexes' => true, 58 | 'strict' => true, 59 | 'engine' => null, 60 | 'options' => extension_loaded('pdo_mysql') ? array_filter([ 61 | PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), 62 | ]) : [], 63 | ], 64 | 65 | 'mariadb' => [ 66 | 'driver' => 'mariadb', 67 | 'url' => env('DB_URL'), 68 | 'host' => env('DB_HOST', '127.0.0.1'), 69 | 'port' => env('DB_PORT', '3306'), 70 | 'database' => env('DB_DATABASE', 'laravel'), 71 | 'username' => env('DB_USERNAME', 'root'), 72 | 'password' => env('DB_PASSWORD', ''), 73 | 'unix_socket' => env('DB_SOCKET', ''), 74 | 'charset' => env('DB_CHARSET', 'utf8mb4'), 75 | 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'), 76 | 'prefix' => '', 77 | 'prefix_indexes' => true, 78 | 'strict' => true, 79 | 'engine' => null, 80 | 'options' => extension_loaded('pdo_mysql') ? array_filter([ 81 | PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), 82 | ]) : [], 83 | ], 84 | 85 | 'pgsql' => [ 86 | 'driver' => 'pgsql', 87 | 'url' => env('DB_URL'), 88 | 'host' => env('DB_HOST', '127.0.0.1'), 89 | 'port' => env('DB_PORT', '5432'), 90 | 'database' => env('DB_DATABASE', 'laravel'), 91 | 'username' => env('DB_USERNAME', 'root'), 92 | 'password' => env('DB_PASSWORD', ''), 93 | 'charset' => env('DB_CHARSET', 'utf8'), 94 | 'prefix' => '', 95 | 'prefix_indexes' => true, 96 | 'search_path' => 'public', 97 | 'sslmode' => 'prefer', 98 | ], 99 | 100 | 'sqlsrv' => [ 101 | 'driver' => 'sqlsrv', 102 | 'url' => env('DB_URL'), 103 | 'host' => env('DB_HOST', 'localhost'), 104 | 'port' => env('DB_PORT', '1433'), 105 | 'database' => env('DB_DATABASE', 'laravel'), 106 | 'username' => env('DB_USERNAME', 'root'), 107 | 'password' => env('DB_PASSWORD', ''), 108 | 'charset' => env('DB_CHARSET', 'utf8'), 109 | 'prefix' => '', 110 | 'prefix_indexes' => true, 111 | // 'encrypt' => env('DB_ENCRYPT', 'yes'), 112 | // 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'), 113 | ], 114 | 115 | ], 116 | 117 | /* 118 | |-------------------------------------------------------------------------- 119 | | Migration Repository Table 120 | |-------------------------------------------------------------------------- 121 | | 122 | | This table keeps track of all the migrations that have already run for 123 | | your application. Using this information, we can determine which of 124 | | the migrations on disk haven't actually been run on the database. 125 | | 126 | */ 127 | 128 | 'migrations' => [ 129 | 'table' => 'migrations', 130 | 'update_date_on_publish' => true, 131 | ], 132 | 133 | /* 134 | |-------------------------------------------------------------------------- 135 | | Redis Databases 136 | |-------------------------------------------------------------------------- 137 | | 138 | | Redis is an open source, fast, and advanced key-value store that also 139 | | provides a richer body of commands than a typical key-value system 140 | | such as Memcached. You may define your connection settings here. 141 | | 142 | */ 143 | 144 | 'redis' => [ 145 | 146 | 'client' => env('REDIS_CLIENT', 'phpredis'), 147 | 148 | 'options' => [ 149 | 'cluster' => env('REDIS_CLUSTER', 'redis'), 150 | 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), 151 | ], 152 | 153 | 'default' => [ 154 | 'url' => env('REDIS_URL'), 155 | 'host' => env('REDIS_HOST', '127.0.0.1'), 156 | 'username' => env('REDIS_USERNAME'), 157 | 'password' => env('REDIS_PASSWORD'), 158 | 'port' => env('REDIS_PORT', '6379'), 159 | 'database' => env('REDIS_DB', '0'), 160 | ], 161 | 162 | 'cache' => [ 163 | 'url' => env('REDIS_URL'), 164 | 'host' => env('REDIS_HOST', '127.0.0.1'), 165 | 'username' => env('REDIS_USERNAME'), 166 | 'password' => env('REDIS_PASSWORD'), 167 | 'port' => env('REDIS_PORT', '6379'), 168 | 'database' => env('REDIS_CACHE_DB', '1'), 169 | ], 170 | 171 | ], 172 | 173 | ]; 174 | -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- 1 | env('FILESYSTEM_DISK', 'local'), 17 | 18 | /* 19 | |-------------------------------------------------------------------------- 20 | | Filesystem Disks 21 | |-------------------------------------------------------------------------- 22 | | 23 | | Below you may configure as many filesystem disks as necessary, and you 24 | | may even configure multiple disks for the same driver. Examples for 25 | | most supported storage drivers are configured here for reference. 26 | | 27 | | Supported drivers: "local", "ftp", "sftp", "s3" 28 | | 29 | */ 30 | 31 | 'disks' => [ 32 | 33 | 'local' => [ 34 | 'driver' => 'local', 35 | 'root' => storage_path('app/private'), 36 | 'serve' => true, 37 | 'throw' => false, 38 | ], 39 | 40 | 'public' => [ 41 | 'driver' => 'local', 42 | 'root' => storage_path('app/public'), 43 | 'url' => env('APP_URL').'/storage', 44 | 'visibility' => 'public', 45 | 'throw' => false, 46 | ], 47 | 48 | 's3' => [ 49 | 'driver' => 's3', 50 | 'key' => env('AWS_ACCESS_KEY_ID'), 51 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 52 | 'region' => env('AWS_DEFAULT_REGION'), 53 | 'bucket' => env('AWS_BUCKET'), 54 | 'url' => env('AWS_URL'), 55 | 'endpoint' => env('AWS_ENDPOINT'), 56 | 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), 57 | 'throw' => false, 58 | ], 59 | 60 | ], 61 | 62 | /* 63 | |-------------------------------------------------------------------------- 64 | | Symbolic Links 65 | |-------------------------------------------------------------------------- 66 | | 67 | | Here you may configure the symbolic links that will be created when the 68 | | `storage:link` Artisan command is executed. The array keys should be 69 | | the locations of the links and the values should be their targets. 70 | | 71 | */ 72 | 73 | 'links' => [ 74 | public_path('storage') => storage_path('app/public'), 75 | ], 76 | 77 | ]; 78 | -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- 1 | env('LOG_CHANNEL', 'stack'), 22 | 23 | /* 24 | |-------------------------------------------------------------------------- 25 | | Deprecations Log Channel 26 | |-------------------------------------------------------------------------- 27 | | 28 | | This option controls the log channel that should be used to log warnings 29 | | regarding deprecated PHP and library features. This allows you to get 30 | | your application ready for upcoming major versions of dependencies. 31 | | 32 | */ 33 | 34 | 'deprecations' => [ 35 | 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'), 36 | 'trace' => env('LOG_DEPRECATIONS_TRACE', false), 37 | ], 38 | 39 | /* 40 | |-------------------------------------------------------------------------- 41 | | Log Channels 42 | |-------------------------------------------------------------------------- 43 | | 44 | | Here you may configure the log channels for your application. Laravel 45 | | utilizes the Monolog PHP logging library, which includes a variety 46 | | of powerful log handlers and formatters that you're free to use. 47 | | 48 | | Available drivers: "single", "daily", "slack", "syslog", 49 | | "errorlog", "monolog", "custom", "stack" 50 | | 51 | */ 52 | 53 | 'channels' => [ 54 | 55 | 'stack' => [ 56 | 'driver' => 'stack', 57 | 'channels' => explode(',', env('LOG_STACK', 'single')), 58 | 'ignore_exceptions' => false, 59 | ], 60 | 61 | 'single' => [ 62 | 'driver' => 'single', 63 | 'path' => storage_path('logs/laravel.log'), 64 | 'level' => env('LOG_LEVEL', 'debug'), 65 | 'replace_placeholders' => true, 66 | ], 67 | 68 | 'daily' => [ 69 | 'driver' => 'daily', 70 | 'path' => storage_path('logs/laravel.log'), 71 | 'level' => env('LOG_LEVEL', 'debug'), 72 | 'days' => env('LOG_DAILY_DAYS', 14), 73 | 'replace_placeholders' => true, 74 | ], 75 | 76 | 'slack' => [ 77 | 'driver' => 'slack', 78 | 'url' => env('LOG_SLACK_WEBHOOK_URL'), 79 | 'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'), 80 | 'emoji' => env('LOG_SLACK_EMOJI', ':boom:'), 81 | 'level' => env('LOG_LEVEL', 'critical'), 82 | 'replace_placeholders' => true, 83 | ], 84 | 85 | 'papertrail' => [ 86 | 'driver' => 'monolog', 87 | 'level' => env('LOG_LEVEL', 'debug'), 88 | 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class), 89 | 'handler_with' => [ 90 | 'host' => env('PAPERTRAIL_URL'), 91 | 'port' => env('PAPERTRAIL_PORT'), 92 | 'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'), 93 | ], 94 | 'processors' => [PsrLogMessageProcessor::class], 95 | ], 96 | 97 | 'stderr' => [ 98 | 'driver' => 'monolog', 99 | 'level' => env('LOG_LEVEL', 'debug'), 100 | 'handler' => StreamHandler::class, 101 | 'formatter' => env('LOG_STDERR_FORMATTER'), 102 | 'with' => [ 103 | 'stream' => 'php://stderr', 104 | ], 105 | 'processors' => [PsrLogMessageProcessor::class], 106 | ], 107 | 108 | 'syslog' => [ 109 | 'driver' => 'syslog', 110 | 'level' => env('LOG_LEVEL', 'debug'), 111 | 'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER), 112 | 'replace_placeholders' => true, 113 | ], 114 | 115 | 'errorlog' => [ 116 | 'driver' => 'errorlog', 117 | 'level' => env('LOG_LEVEL', 'debug'), 118 | 'replace_placeholders' => true, 119 | ], 120 | 121 | 'null' => [ 122 | 'driver' => 'monolog', 123 | 'handler' => NullHandler::class, 124 | ], 125 | 126 | 'emergency' => [ 127 | 'path' => storage_path('logs/laravel.log'), 128 | ], 129 | 130 | ], 131 | 132 | ]; 133 | -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- 1 | env('MAIL_MAILER', 'log'), 18 | 19 | /* 20 | |-------------------------------------------------------------------------- 21 | | Mailer Configurations 22 | |-------------------------------------------------------------------------- 23 | | 24 | | Here you may configure all of the mailers used by your application plus 25 | | their respective settings. Several examples have been configured for 26 | | you and you are free to add your own as your application requires. 27 | | 28 | | Laravel supports a variety of mail "transport" drivers that can be used 29 | | when delivering an email. You may specify which one you're using for 30 | | your mailers below. You may also add additional mailers if needed. 31 | | 32 | | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2", 33 | | "postmark", "resend", "log", "array", 34 | | "failover", "roundrobin" 35 | | 36 | */ 37 | 38 | 'mailers' => [ 39 | 40 | 'smtp' => [ 41 | 'transport' => 'smtp', 42 | 'url' => env('MAIL_URL'), 43 | 'host' => env('MAIL_HOST', '127.0.0.1'), 44 | 'port' => env('MAIL_PORT', 2525), 45 | 'encryption' => env('MAIL_ENCRYPTION', 'tls'), 46 | 'username' => env('MAIL_USERNAME'), 47 | 'password' => env('MAIL_PASSWORD'), 48 | 'timeout' => null, 49 | 'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)), 50 | ], 51 | 52 | 'ses' => [ 53 | 'transport' => 'ses', 54 | ], 55 | 56 | 'postmark' => [ 57 | 'transport' => 'postmark', 58 | // 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'), 59 | // 'client' => [ 60 | // 'timeout' => 5, 61 | // ], 62 | ], 63 | 64 | 'resend' => [ 65 | 'transport' => 'resend', 66 | ], 67 | 68 | 'sendmail' => [ 69 | 'transport' => 'sendmail', 70 | 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'), 71 | ], 72 | 73 | 'log' => [ 74 | 'transport' => 'log', 75 | 'channel' => env('MAIL_LOG_CHANNEL'), 76 | ], 77 | 78 | 'array' => [ 79 | 'transport' => 'array', 80 | ], 81 | 82 | 'failover' => [ 83 | 'transport' => 'failover', 84 | 'mailers' => [ 85 | 'smtp', 86 | 'log', 87 | ], 88 | ], 89 | 90 | 'roundrobin' => [ 91 | 'transport' => 'roundrobin', 92 | 'mailers' => [ 93 | 'ses', 94 | 'postmark', 95 | ], 96 | ], 97 | 98 | ], 99 | 100 | /* 101 | |-------------------------------------------------------------------------- 102 | | Global "From" Address 103 | |-------------------------------------------------------------------------- 104 | | 105 | | You may wish for all emails sent by your application to be sent from 106 | | the same address. Here you may specify a name and address that is 107 | | used globally for all emails that are sent by your application. 108 | | 109 | */ 110 | 111 | 'from' => [ 112 | 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), 113 | 'name' => env('MAIL_FROM_NAME', 'Example'), 114 | ], 115 | 116 | ]; 117 | -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- 1 | env('QUEUE_CONNECTION', 'database'), 17 | 18 | /* 19 | |-------------------------------------------------------------------------- 20 | | Queue Connections 21 | |-------------------------------------------------------------------------- 22 | | 23 | | Here you may configure the connection options for every queue backend 24 | | used by your application. An example configuration is provided for 25 | | each backend supported by Laravel. You're also free to add more. 26 | | 27 | | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" 28 | | 29 | */ 30 | 31 | 'connections' => [ 32 | 33 | 'sync' => [ 34 | 'driver' => 'sync', 35 | ], 36 | 37 | 'database' => [ 38 | 'driver' => 'database', 39 | 'connection' => env('DB_QUEUE_CONNECTION'), 40 | 'table' => env('DB_QUEUE_TABLE', 'jobs'), 41 | 'queue' => env('DB_QUEUE', 'default'), 42 | 'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90), 43 | 'after_commit' => false, 44 | ], 45 | 46 | 'beanstalkd' => [ 47 | 'driver' => 'beanstalkd', 48 | 'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'), 49 | 'queue' => env('BEANSTALKD_QUEUE', 'default'), 50 | 'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90), 51 | 'block_for' => 0, 52 | 'after_commit' => false, 53 | ], 54 | 55 | 'sqs' => [ 56 | 'driver' => 'sqs', 57 | 'key' => env('AWS_ACCESS_KEY_ID'), 58 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 59 | 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), 60 | 'queue' => env('SQS_QUEUE', 'default'), 61 | 'suffix' => env('SQS_SUFFIX'), 62 | 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 63 | 'after_commit' => false, 64 | ], 65 | 66 | 'redis' => [ 67 | 'driver' => 'redis', 68 | 'connection' => env('REDIS_QUEUE_CONNECTION', 'default'), 69 | 'queue' => env('REDIS_QUEUE', 'default'), 70 | 'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90), 71 | 'block_for' => null, 72 | 'after_commit' => false, 73 | ], 74 | 75 | ], 76 | 77 | /* 78 | |-------------------------------------------------------------------------- 79 | | Job Batching 80 | |-------------------------------------------------------------------------- 81 | | 82 | | The following options configure the database and table that store job 83 | | batching information. These options can be updated to any database 84 | | connection and table which has been defined by your application. 85 | | 86 | */ 87 | 88 | 'batching' => [ 89 | 'database' => env('DB_CONNECTION', 'sqlite'), 90 | 'table' => 'job_batches', 91 | ], 92 | 93 | /* 94 | |-------------------------------------------------------------------------- 95 | | Failed Queue Jobs 96 | |-------------------------------------------------------------------------- 97 | | 98 | | These options configure the behavior of failed queue job logging so you 99 | | can control how and where failed jobs are stored. Laravel ships with 100 | | support for storing failed jobs in a simple file or in a database. 101 | | 102 | | Supported drivers: "database-uuids", "dynamodb", "file", "null" 103 | | 104 | */ 105 | 106 | 'failed' => [ 107 | 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), 108 | 'database' => env('DB_CONNECTION', 'sqlite'), 109 | 'table' => 'failed_jobs', 110 | ], 111 | 112 | ]; 113 | -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- 1 | [ 18 | 'token' => env('POSTMARK_TOKEN'), 19 | ], 20 | 21 | 'ses' => [ 22 | 'key' => env('AWS_ACCESS_KEY_ID'), 23 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 24 | 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 25 | ], 26 | 27 | 'resend' => [ 28 | 'key' => env('RESEND_KEY'), 29 | ], 30 | 31 | 'slack' => [ 32 | 'notifications' => [ 33 | 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'), 34 | 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'), 35 | ], 36 | ], 37 | 38 | ]; 39 | -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- 1 | env('SESSION_DRIVER', 'database'), 22 | 23 | /* 24 | |-------------------------------------------------------------------------- 25 | | Session Lifetime 26 | |-------------------------------------------------------------------------- 27 | | 28 | | Here you may specify the number of minutes that you wish the session 29 | | to be allowed to remain idle before it expires. If you want them 30 | | to expire immediately when the browser is closed then you may 31 | | indicate that via the expire_on_close configuration option. 32 | | 33 | */ 34 | 35 | 'lifetime' => env('SESSION_LIFETIME', 120), 36 | 37 | 'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false), 38 | 39 | /* 40 | |-------------------------------------------------------------------------- 41 | | Session Encryption 42 | |-------------------------------------------------------------------------- 43 | | 44 | | This option allows you to easily specify that all of your session data 45 | | should be encrypted before it's stored. All encryption is performed 46 | | automatically by Laravel and you may use the session like normal. 47 | | 48 | */ 49 | 50 | 'encrypt' => env('SESSION_ENCRYPT', false), 51 | 52 | /* 53 | |-------------------------------------------------------------------------- 54 | | Session File Location 55 | |-------------------------------------------------------------------------- 56 | | 57 | | When utilizing the "file" session driver, the session files are placed 58 | | on disk. The default storage location is defined here; however, you 59 | | are free to provide another location where they should be stored. 60 | | 61 | */ 62 | 63 | 'files' => storage_path('framework/sessions'), 64 | 65 | /* 66 | |-------------------------------------------------------------------------- 67 | | Session Database Connection 68 | |-------------------------------------------------------------------------- 69 | | 70 | | When using the "database" or "redis" session drivers, you may specify a 71 | | connection that should be used to manage these sessions. This should 72 | | correspond to a connection in your database configuration options. 73 | | 74 | */ 75 | 76 | 'connection' => env('SESSION_CONNECTION'), 77 | 78 | /* 79 | |-------------------------------------------------------------------------- 80 | | Session Database Table 81 | |-------------------------------------------------------------------------- 82 | | 83 | | When using the "database" session driver, you may specify the table to 84 | | be used to store sessions. Of course, a sensible default is defined 85 | | for you; however, you're welcome to change this to another table. 86 | | 87 | */ 88 | 89 | 'table' => env('SESSION_TABLE', 'sessions'), 90 | 91 | /* 92 | |-------------------------------------------------------------------------- 93 | | Session Cache Store 94 | |-------------------------------------------------------------------------- 95 | | 96 | | When using one of the framework's cache driven session backends, you may 97 | | define the cache store which should be used to store the session data 98 | | between requests. This must match one of your defined cache stores. 99 | | 100 | | Affects: "apc", "dynamodb", "memcached", "redis" 101 | | 102 | */ 103 | 104 | 'store' => env('SESSION_STORE'), 105 | 106 | /* 107 | |-------------------------------------------------------------------------- 108 | | Session Sweeping Lottery 109 | |-------------------------------------------------------------------------- 110 | | 111 | | Some session drivers must manually sweep their storage location to get 112 | | rid of old sessions from storage. Here are the chances that it will 113 | | happen on a given request. By default, the odds are 2 out of 100. 114 | | 115 | */ 116 | 117 | 'lottery' => [2, 100], 118 | 119 | /* 120 | |-------------------------------------------------------------------------- 121 | | Session Cookie Name 122 | |-------------------------------------------------------------------------- 123 | | 124 | | Here you may change the name of the session cookie that is created by 125 | | the framework. Typically, you should not need to change this value 126 | | since doing so does not grant a meaningful security improvement. 127 | | 128 | */ 129 | 130 | 'cookie' => env( 131 | 'SESSION_COOKIE', 132 | Str::slug(env('APP_NAME', 'laravel'), '_').'_session' 133 | ), 134 | 135 | /* 136 | |-------------------------------------------------------------------------- 137 | | Session Cookie Path 138 | |-------------------------------------------------------------------------- 139 | | 140 | | The session cookie path determines the path for which the cookie will 141 | | be regarded as available. Typically, this will be the root path of 142 | | your application, but you're free to change this when necessary. 143 | | 144 | */ 145 | 146 | 'path' => env('SESSION_PATH', '/'), 147 | 148 | /* 149 | |-------------------------------------------------------------------------- 150 | | Session Cookie Domain 151 | |-------------------------------------------------------------------------- 152 | | 153 | | This value determines the domain and subdomains the session cookie is 154 | | available to. By default, the cookie will be available to the root 155 | | domain and all subdomains. Typically, this shouldn't be changed. 156 | | 157 | */ 158 | 159 | 'domain' => env('SESSION_DOMAIN'), 160 | 161 | /* 162 | |-------------------------------------------------------------------------- 163 | | HTTPS Only Cookies 164 | |-------------------------------------------------------------------------- 165 | | 166 | | By setting this option to true, session cookies will only be sent back 167 | | to the server if the browser has a HTTPS connection. This will keep 168 | | the cookie from being sent to you when it can't be done securely. 169 | | 170 | */ 171 | 172 | 'secure' => env('SESSION_SECURE_COOKIE'), 173 | 174 | /* 175 | |-------------------------------------------------------------------------- 176 | | HTTP Access Only 177 | |-------------------------------------------------------------------------- 178 | | 179 | | Setting this value to true will prevent JavaScript from accessing the 180 | | value of the cookie and the cookie will only be accessible through 181 | | the HTTP protocol. It's unlikely you should disable this option. 182 | | 183 | */ 184 | 185 | 'http_only' => env('SESSION_HTTP_ONLY', true), 186 | 187 | /* 188 | |-------------------------------------------------------------------------- 189 | | Same-Site Cookies 190 | |-------------------------------------------------------------------------- 191 | | 192 | | This option determines how your cookies behave when cross-site requests 193 | | take place, and can be used to mitigate CSRF attacks. By default, we 194 | | will set this value to "lax" to permit secure cross-site requests. 195 | | 196 | | See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value 197 | | 198 | | Supported: "lax", "strict", "none", null 199 | | 200 | */ 201 | 202 | 'same_site' => env('SESSION_SAME_SITE', 'lax'), 203 | 204 | /* 205 | |-------------------------------------------------------------------------- 206 | | Partitioned Cookies 207 | |-------------------------------------------------------------------------- 208 | | 209 | | Setting this value to true will tie the cookie to the top-level site for 210 | | a cross-site context. Partitioned cookies are accepted by the browser 211 | | when flagged "secure" and the Same-Site attribute is set to "none". 212 | | 213 | */ 214 | 215 | 'partitioned' => env('SESSION_PARTITIONED_COOKIE', false), 216 | 217 | ]; 218 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | class UserFactory extends Factory 13 | { 14 | /** 15 | * The current password being used by the factory. 16 | */ 17 | protected static ?string $password; 18 | 19 | /** 20 | * Define the model's default state. 21 | * 22 | * @return array 23 | */ 24 | public function definition(): array 25 | { 26 | return [ 27 | 'name' => fake()->name(), 28 | 'email' => fake()->unique()->safeEmail(), 29 | 'email_verified_at' => now(), 30 | 'password' => static::$password ??= Hash::make('password'), 31 | 'remember_token' => Str::random(10), 32 | ]; 33 | } 34 | 35 | /** 36 | * Indicate that the model's email address should be unverified. 37 | */ 38 | public function unverified(): static 39 | { 40 | return $this->state(fn (array $attributes) => [ 41 | 'email_verified_at' => null, 42 | ]); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- 1 | id(); 16 | $table->string('name'); 17 | $table->string('email')->unique(); 18 | $table->timestamp('email_verified_at')->nullable(); 19 | $table->string('password'); 20 | $table->rememberToken(); 21 | $table->timestamps(); 22 | }); 23 | 24 | Schema::create('password_reset_tokens', function (Blueprint $table) { 25 | $table->string('email')->primary(); 26 | $table->string('token'); 27 | $table->timestamp('created_at')->nullable(); 28 | }); 29 | 30 | Schema::create('sessions', function (Blueprint $table) { 31 | $table->string('id')->primary(); 32 | $table->foreignId('user_id')->nullable()->index(); 33 | $table->string('ip_address', 45)->nullable(); 34 | $table->text('user_agent')->nullable(); 35 | $table->longText('payload'); 36 | $table->integer('last_activity')->index(); 37 | }); 38 | } 39 | 40 | /** 41 | * Reverse the migrations. 42 | */ 43 | public function down(): void 44 | { 45 | Schema::dropIfExists('users'); 46 | Schema::dropIfExists('password_reset_tokens'); 47 | Schema::dropIfExists('sessions'); 48 | } 49 | }; 50 | -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000001_create_cache_table.php: -------------------------------------------------------------------------------- 1 | string('key')->primary(); 16 | $table->mediumText('value'); 17 | $table->integer('expiration'); 18 | }); 19 | 20 | Schema::create('cache_locks', function (Blueprint $table) { 21 | $table->string('key')->primary(); 22 | $table->string('owner'); 23 | $table->integer('expiration'); 24 | }); 25 | } 26 | 27 | /** 28 | * Reverse the migrations. 29 | */ 30 | public function down(): void 31 | { 32 | Schema::dropIfExists('cache'); 33 | Schema::dropIfExists('cache_locks'); 34 | } 35 | }; 36 | -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000002_create_jobs_table.php: -------------------------------------------------------------------------------- 1 | id(); 16 | $table->string('queue')->index(); 17 | $table->longText('payload'); 18 | $table->unsignedTinyInteger('attempts'); 19 | $table->unsignedInteger('reserved_at')->nullable(); 20 | $table->unsignedInteger('available_at'); 21 | $table->unsignedInteger('created_at'); 22 | }); 23 | 24 | Schema::create('job_batches', function (Blueprint $table) { 25 | $table->string('id')->primary(); 26 | $table->string('name'); 27 | $table->integer('total_jobs'); 28 | $table->integer('pending_jobs'); 29 | $table->integer('failed_jobs'); 30 | $table->longText('failed_job_ids'); 31 | $table->mediumText('options')->nullable(); 32 | $table->integer('cancelled_at')->nullable(); 33 | $table->integer('created_at'); 34 | $table->integer('finished_at')->nullable(); 35 | }); 36 | 37 | Schema::create('failed_jobs', function (Blueprint $table) { 38 | $table->id(); 39 | $table->string('uuid')->unique(); 40 | $table->text('connection'); 41 | $table->text('queue'); 42 | $table->longText('payload'); 43 | $table->longText('exception'); 44 | $table->timestamp('failed_at')->useCurrent(); 45 | }); 46 | } 47 | 48 | /** 49 | * Reverse the migrations. 50 | */ 51 | public function down(): void 52 | { 53 | Schema::dropIfExists('jobs'); 54 | Schema::dropIfExists('job_batches'); 55 | Schema::dropIfExists('failed_jobs'); 56 | } 57 | }; 58 | -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | create(); 17 | 18 | User::factory()->create([ 19 | 'name' => 'Test User', 20 | 'email' => 'test@example.com', 21 | ]); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "estore", 3 | "lockfileVersion": 3, 4 | "requires": true, 5 | "packages": { 6 | "": { 7 | "devDependencies": { 8 | "autoprefixer": "^10.4.20", 9 | "axios": "^1.7.4", 10 | "concurrently": "^9.0.1", 11 | "laravel-vite-plugin": "^1.0", 12 | "postcss": "^8.4.47", 13 | "tailwindcss": "^3.4.13", 14 | "vite": "^5.0" 15 | } 16 | }, 17 | "node_modules/@alloc/quick-lru": { 18 | "version": "5.2.0", 19 | "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", 20 | "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", 21 | "dev": true, 22 | "license": "MIT", 23 | "engines": { 24 | "node": ">=10" 25 | }, 26 | "funding": { 27 | "url": "https://github.com/sponsors/sindresorhus" 28 | } 29 | }, 30 | "node_modules/@esbuild/aix-ppc64": { 31 | "version": "0.21.5", 32 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", 33 | "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", 34 | "cpu": [ 35 | "ppc64" 36 | ], 37 | "dev": true, 38 | "license": "MIT", 39 | "optional": true, 40 | "os": [ 41 | "aix" 42 | ], 43 | "engines": { 44 | "node": ">=12" 45 | } 46 | }, 47 | "node_modules/@esbuild/android-arm": { 48 | "version": "0.21.5", 49 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", 50 | "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", 51 | "cpu": [ 52 | "arm" 53 | ], 54 | "dev": true, 55 | "license": "MIT", 56 | "optional": true, 57 | "os": [ 58 | "android" 59 | ], 60 | "engines": { 61 | "node": ">=12" 62 | } 63 | }, 64 | "node_modules/@esbuild/android-arm64": { 65 | "version": "0.21.5", 66 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", 67 | "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", 68 | "cpu": [ 69 | "arm64" 70 | ], 71 | "dev": true, 72 | "license": "MIT", 73 | "optional": true, 74 | "os": [ 75 | "android" 76 | ], 77 | "engines": { 78 | "node": ">=12" 79 | } 80 | }, 81 | "node_modules/@esbuild/android-x64": { 82 | "version": "0.21.5", 83 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", 84 | "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", 85 | "cpu": [ 86 | "x64" 87 | ], 88 | "dev": true, 89 | "license": "MIT", 90 | "optional": true, 91 | "os": [ 92 | "android" 93 | ], 94 | "engines": { 95 | "node": ">=12" 96 | } 97 | }, 98 | "node_modules/@esbuild/darwin-arm64": { 99 | "version": "0.21.5", 100 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", 101 | "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", 102 | "cpu": [ 103 | "arm64" 104 | ], 105 | "dev": true, 106 | "license": "MIT", 107 | "optional": true, 108 | "os": [ 109 | "darwin" 110 | ], 111 | "engines": { 112 | "node": ">=12" 113 | } 114 | }, 115 | "node_modules/@esbuild/darwin-x64": { 116 | "version": "0.21.5", 117 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", 118 | "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", 119 | "cpu": [ 120 | "x64" 121 | ], 122 | "dev": true, 123 | "license": "MIT", 124 | "optional": true, 125 | "os": [ 126 | "darwin" 127 | ], 128 | "engines": { 129 | "node": ">=12" 130 | } 131 | }, 132 | "node_modules/@esbuild/freebsd-arm64": { 133 | "version": "0.21.5", 134 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", 135 | "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", 136 | "cpu": [ 137 | "arm64" 138 | ], 139 | "dev": true, 140 | "license": "MIT", 141 | "optional": true, 142 | "os": [ 143 | "freebsd" 144 | ], 145 | "engines": { 146 | "node": ">=12" 147 | } 148 | }, 149 | "node_modules/@esbuild/freebsd-x64": { 150 | "version": "0.21.5", 151 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", 152 | "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", 153 | "cpu": [ 154 | "x64" 155 | ], 156 | "dev": true, 157 | "license": "MIT", 158 | "optional": true, 159 | "os": [ 160 | "freebsd" 161 | ], 162 | "engines": { 163 | "node": ">=12" 164 | } 165 | }, 166 | "node_modules/@esbuild/linux-arm": { 167 | "version": "0.21.5", 168 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", 169 | "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", 170 | "cpu": [ 171 | "arm" 172 | ], 173 | "dev": true, 174 | "license": "MIT", 175 | "optional": true, 176 | "os": [ 177 | "linux" 178 | ], 179 | "engines": { 180 | "node": ">=12" 181 | } 182 | }, 183 | "node_modules/@esbuild/linux-arm64": { 184 | "version": "0.21.5", 185 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", 186 | "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", 187 | "cpu": [ 188 | "arm64" 189 | ], 190 | "dev": true, 191 | "license": "MIT", 192 | "optional": true, 193 | "os": [ 194 | "linux" 195 | ], 196 | "engines": { 197 | "node": ">=12" 198 | } 199 | }, 200 | "node_modules/@esbuild/linux-ia32": { 201 | "version": "0.21.5", 202 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", 203 | "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", 204 | "cpu": [ 205 | "ia32" 206 | ], 207 | "dev": true, 208 | "license": "MIT", 209 | "optional": true, 210 | "os": [ 211 | "linux" 212 | ], 213 | "engines": { 214 | "node": ">=12" 215 | } 216 | }, 217 | "node_modules/@esbuild/linux-loong64": { 218 | "version": "0.21.5", 219 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", 220 | "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", 221 | "cpu": [ 222 | "loong64" 223 | ], 224 | "dev": true, 225 | "license": "MIT", 226 | "optional": true, 227 | "os": [ 228 | "linux" 229 | ], 230 | "engines": { 231 | "node": ">=12" 232 | } 233 | }, 234 | "node_modules/@esbuild/linux-mips64el": { 235 | "version": "0.21.5", 236 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", 237 | "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", 238 | "cpu": [ 239 | "mips64el" 240 | ], 241 | "dev": true, 242 | "license": "MIT", 243 | "optional": true, 244 | "os": [ 245 | "linux" 246 | ], 247 | "engines": { 248 | "node": ">=12" 249 | } 250 | }, 251 | "node_modules/@esbuild/linux-ppc64": { 252 | "version": "0.21.5", 253 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", 254 | "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", 255 | "cpu": [ 256 | "ppc64" 257 | ], 258 | "dev": true, 259 | "license": "MIT", 260 | "optional": true, 261 | "os": [ 262 | "linux" 263 | ], 264 | "engines": { 265 | "node": ">=12" 266 | } 267 | }, 268 | "node_modules/@esbuild/linux-riscv64": { 269 | "version": "0.21.5", 270 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", 271 | "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", 272 | "cpu": [ 273 | "riscv64" 274 | ], 275 | "dev": true, 276 | "license": "MIT", 277 | "optional": true, 278 | "os": [ 279 | "linux" 280 | ], 281 | "engines": { 282 | "node": ">=12" 283 | } 284 | }, 285 | "node_modules/@esbuild/linux-s390x": { 286 | "version": "0.21.5", 287 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", 288 | "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", 289 | "cpu": [ 290 | "s390x" 291 | ], 292 | "dev": true, 293 | "license": "MIT", 294 | "optional": true, 295 | "os": [ 296 | "linux" 297 | ], 298 | "engines": { 299 | "node": ">=12" 300 | } 301 | }, 302 | "node_modules/@esbuild/linux-x64": { 303 | "version": "0.21.5", 304 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", 305 | "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", 306 | "cpu": [ 307 | "x64" 308 | ], 309 | "dev": true, 310 | "license": "MIT", 311 | "optional": true, 312 | "os": [ 313 | "linux" 314 | ], 315 | "engines": { 316 | "node": ">=12" 317 | } 318 | }, 319 | "node_modules/@esbuild/netbsd-x64": { 320 | "version": "0.21.5", 321 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", 322 | "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", 323 | "cpu": [ 324 | "x64" 325 | ], 326 | "dev": true, 327 | "license": "MIT", 328 | "optional": true, 329 | "os": [ 330 | "netbsd" 331 | ], 332 | "engines": { 333 | "node": ">=12" 334 | } 335 | }, 336 | "node_modules/@esbuild/openbsd-x64": { 337 | "version": "0.21.5", 338 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", 339 | "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", 340 | "cpu": [ 341 | "x64" 342 | ], 343 | "dev": true, 344 | "license": "MIT", 345 | "optional": true, 346 | "os": [ 347 | "openbsd" 348 | ], 349 | "engines": { 350 | "node": ">=12" 351 | } 352 | }, 353 | "node_modules/@esbuild/sunos-x64": { 354 | "version": "0.21.5", 355 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", 356 | "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", 357 | "cpu": [ 358 | "x64" 359 | ], 360 | "dev": true, 361 | "license": "MIT", 362 | "optional": true, 363 | "os": [ 364 | "sunos" 365 | ], 366 | "engines": { 367 | "node": ">=12" 368 | } 369 | }, 370 | "node_modules/@esbuild/win32-arm64": { 371 | "version": "0.21.5", 372 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", 373 | "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", 374 | "cpu": [ 375 | "arm64" 376 | ], 377 | "dev": true, 378 | "license": "MIT", 379 | "optional": true, 380 | "os": [ 381 | "win32" 382 | ], 383 | "engines": { 384 | "node": ">=12" 385 | } 386 | }, 387 | "node_modules/@esbuild/win32-ia32": { 388 | "version": "0.21.5", 389 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", 390 | "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", 391 | "cpu": [ 392 | "ia32" 393 | ], 394 | "dev": true, 395 | "license": "MIT", 396 | "optional": true, 397 | "os": [ 398 | "win32" 399 | ], 400 | "engines": { 401 | "node": ">=12" 402 | } 403 | }, 404 | "node_modules/@esbuild/win32-x64": { 405 | "version": "0.21.5", 406 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", 407 | "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", 408 | "cpu": [ 409 | "x64" 410 | ], 411 | "dev": true, 412 | "license": "MIT", 413 | "optional": true, 414 | "os": [ 415 | "win32" 416 | ], 417 | "engines": { 418 | "node": ">=12" 419 | } 420 | }, 421 | "node_modules/@isaacs/cliui": { 422 | "version": "8.0.2", 423 | "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", 424 | "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", 425 | "dev": true, 426 | "license": "ISC", 427 | "dependencies": { 428 | "string-width": "^5.1.2", 429 | "string-width-cjs": "npm:string-width@^4.2.0", 430 | "strip-ansi": "^7.0.1", 431 | "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", 432 | "wrap-ansi": "^8.1.0", 433 | "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" 434 | }, 435 | "engines": { 436 | "node": ">=12" 437 | } 438 | }, 439 | "node_modules/@jridgewell/gen-mapping": { 440 | "version": "0.3.5", 441 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", 442 | "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", 443 | "dev": true, 444 | "license": "MIT", 445 | "dependencies": { 446 | "@jridgewell/set-array": "^1.2.1", 447 | "@jridgewell/sourcemap-codec": "^1.4.10", 448 | "@jridgewell/trace-mapping": "^0.3.24" 449 | }, 450 | "engines": { 451 | "node": ">=6.0.0" 452 | } 453 | }, 454 | "node_modules/@jridgewell/resolve-uri": { 455 | "version": "3.1.2", 456 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 457 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 458 | "dev": true, 459 | "license": "MIT", 460 | "engines": { 461 | "node": ">=6.0.0" 462 | } 463 | }, 464 | "node_modules/@jridgewell/set-array": { 465 | "version": "1.2.1", 466 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 467 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 468 | "dev": true, 469 | "license": "MIT", 470 | "engines": { 471 | "node": ">=6.0.0" 472 | } 473 | }, 474 | "node_modules/@jridgewell/sourcemap-codec": { 475 | "version": "1.5.0", 476 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 477 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 478 | "dev": true, 479 | "license": "MIT" 480 | }, 481 | "node_modules/@jridgewell/trace-mapping": { 482 | "version": "0.3.25", 483 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 484 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 485 | "dev": true, 486 | "license": "MIT", 487 | "dependencies": { 488 | "@jridgewell/resolve-uri": "^3.1.0", 489 | "@jridgewell/sourcemap-codec": "^1.4.14" 490 | } 491 | }, 492 | "node_modules/@nodelib/fs.scandir": { 493 | "version": "2.1.5", 494 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 495 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 496 | "dev": true, 497 | "license": "MIT", 498 | "dependencies": { 499 | "@nodelib/fs.stat": "2.0.5", 500 | "run-parallel": "^1.1.9" 501 | }, 502 | "engines": { 503 | "node": ">= 8" 504 | } 505 | }, 506 | "node_modules/@nodelib/fs.stat": { 507 | "version": "2.0.5", 508 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 509 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 510 | "dev": true, 511 | "license": "MIT", 512 | "engines": { 513 | "node": ">= 8" 514 | } 515 | }, 516 | "node_modules/@nodelib/fs.walk": { 517 | "version": "1.2.8", 518 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 519 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 520 | "dev": true, 521 | "license": "MIT", 522 | "dependencies": { 523 | "@nodelib/fs.scandir": "2.1.5", 524 | "fastq": "^1.6.0" 525 | }, 526 | "engines": { 527 | "node": ">= 8" 528 | } 529 | }, 530 | "node_modules/@pkgjs/parseargs": { 531 | "version": "0.11.0", 532 | "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", 533 | "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", 534 | "dev": true, 535 | "license": "MIT", 536 | "optional": true, 537 | "engines": { 538 | "node": ">=14" 539 | } 540 | }, 541 | "node_modules/@rollup/rollup-android-arm-eabi": { 542 | "version": "4.24.4", 543 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.24.4.tgz", 544 | "integrity": "sha512-jfUJrFct/hTA0XDM5p/htWKoNNTbDLY0KRwEt6pyOA6k2fmk0WVwl65PdUdJZgzGEHWx+49LilkcSaumQRyNQw==", 545 | "cpu": [ 546 | "arm" 547 | ], 548 | "dev": true, 549 | "license": "MIT", 550 | "optional": true, 551 | "os": [ 552 | "android" 553 | ] 554 | }, 555 | "node_modules/@rollup/rollup-android-arm64": { 556 | "version": "4.24.4", 557 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.24.4.tgz", 558 | "integrity": "sha512-j4nrEO6nHU1nZUuCfRKoCcvh7PIywQPUCBa2UsootTHvTHIoIu2BzueInGJhhvQO/2FTRdNYpf63xsgEqH9IhA==", 559 | "cpu": [ 560 | "arm64" 561 | ], 562 | "dev": true, 563 | "license": "MIT", 564 | "optional": true, 565 | "os": [ 566 | "android" 567 | ] 568 | }, 569 | "node_modules/@rollup/rollup-darwin-arm64": { 570 | "version": "4.24.4", 571 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.24.4.tgz", 572 | "integrity": "sha512-GmU/QgGtBTeraKyldC7cDVVvAJEOr3dFLKneez/n7BvX57UdhOqDsVwzU7UOnYA7AAOt+Xb26lk79PldDHgMIQ==", 573 | "cpu": [ 574 | "arm64" 575 | ], 576 | "dev": true, 577 | "license": "MIT", 578 | "optional": true, 579 | "os": [ 580 | "darwin" 581 | ] 582 | }, 583 | "node_modules/@rollup/rollup-darwin-x64": { 584 | "version": "4.24.4", 585 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.24.4.tgz", 586 | "integrity": "sha512-N6oDBiZCBKlwYcsEPXGDE4g9RoxZLK6vT98M8111cW7VsVJFpNEqvJeIPfsCzbf0XEakPslh72X0gnlMi4Ddgg==", 587 | "cpu": [ 588 | "x64" 589 | ], 590 | "dev": true, 591 | "license": "MIT", 592 | "optional": true, 593 | "os": [ 594 | "darwin" 595 | ] 596 | }, 597 | "node_modules/@rollup/rollup-freebsd-arm64": { 598 | "version": "4.24.4", 599 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.24.4.tgz", 600 | "integrity": "sha512-py5oNShCCjCyjWXCZNrRGRpjWsF0ic8f4ieBNra5buQz0O/U6mMXCpC1LvrHuhJsNPgRt36tSYMidGzZiJF6mw==", 601 | "cpu": [ 602 | "arm64" 603 | ], 604 | "dev": true, 605 | "license": "MIT", 606 | "optional": true, 607 | "os": [ 608 | "freebsd" 609 | ] 610 | }, 611 | "node_modules/@rollup/rollup-freebsd-x64": { 612 | "version": "4.24.4", 613 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.24.4.tgz", 614 | "integrity": "sha512-L7VVVW9FCnTTp4i7KrmHeDsDvjB4++KOBENYtNYAiYl96jeBThFfhP6HVxL74v4SiZEVDH/1ILscR5U9S4ms4g==", 615 | "cpu": [ 616 | "x64" 617 | ], 618 | "dev": true, 619 | "license": "MIT", 620 | "optional": true, 621 | "os": [ 622 | "freebsd" 623 | ] 624 | }, 625 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 626 | "version": "4.24.4", 627 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.24.4.tgz", 628 | "integrity": "sha512-10ICosOwYChROdQoQo589N5idQIisxjaFE/PAnX2i0Zr84mY0k9zul1ArH0rnJ/fpgiqfu13TFZR5A5YJLOYZA==", 629 | "cpu": [ 630 | "arm" 631 | ], 632 | "dev": true, 633 | "license": "MIT", 634 | "optional": true, 635 | "os": [ 636 | "linux" 637 | ] 638 | }, 639 | "node_modules/@rollup/rollup-linux-arm-musleabihf": { 640 | "version": "4.24.4", 641 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.24.4.tgz", 642 | "integrity": "sha512-ySAfWs69LYC7QhRDZNKqNhz2UKN8LDfbKSMAEtoEI0jitwfAG2iZwVqGACJT+kfYvvz3/JgsLlcBP+WWoKCLcw==", 643 | "cpu": [ 644 | "arm" 645 | ], 646 | "dev": true, 647 | "license": "MIT", 648 | "optional": true, 649 | "os": [ 650 | "linux" 651 | ] 652 | }, 653 | "node_modules/@rollup/rollup-linux-arm64-gnu": { 654 | "version": "4.24.4", 655 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.24.4.tgz", 656 | "integrity": "sha512-uHYJ0HNOI6pGEeZ/5mgm5arNVTI0nLlmrbdph+pGXpC9tFHFDQmDMOEqkmUObRfosJqpU8RliYoGz06qSdtcjg==", 657 | "cpu": [ 658 | "arm64" 659 | ], 660 | "dev": true, 661 | "license": "MIT", 662 | "optional": true, 663 | "os": [ 664 | "linux" 665 | ] 666 | }, 667 | "node_modules/@rollup/rollup-linux-arm64-musl": { 668 | "version": "4.24.4", 669 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.24.4.tgz", 670 | "integrity": "sha512-38yiWLemQf7aLHDgTg85fh3hW9stJ0Muk7+s6tIkSUOMmi4Xbv5pH/5Bofnsb6spIwD5FJiR+jg71f0CH5OzoA==", 671 | "cpu": [ 672 | "arm64" 673 | ], 674 | "dev": true, 675 | "license": "MIT", 676 | "optional": true, 677 | "os": [ 678 | "linux" 679 | ] 680 | }, 681 | "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { 682 | "version": "4.24.4", 683 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.24.4.tgz", 684 | "integrity": "sha512-q73XUPnkwt9ZNF2xRS4fvneSuaHw2BXuV5rI4cw0fWYVIWIBeDZX7c7FWhFQPNTnE24172K30I+dViWRVD9TwA==", 685 | "cpu": [ 686 | "ppc64" 687 | ], 688 | "dev": true, 689 | "license": "MIT", 690 | "optional": true, 691 | "os": [ 692 | "linux" 693 | ] 694 | }, 695 | "node_modules/@rollup/rollup-linux-riscv64-gnu": { 696 | "version": "4.24.4", 697 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.24.4.tgz", 698 | "integrity": "sha512-Aie/TbmQi6UXokJqDZdmTJuZBCU3QBDA8oTKRGtd4ABi/nHgXICulfg1KI6n9/koDsiDbvHAiQO3YAUNa/7BCw==", 699 | "cpu": [ 700 | "riscv64" 701 | ], 702 | "dev": true, 703 | "license": "MIT", 704 | "optional": true, 705 | "os": [ 706 | "linux" 707 | ] 708 | }, 709 | "node_modules/@rollup/rollup-linux-s390x-gnu": { 710 | "version": "4.24.4", 711 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.24.4.tgz", 712 | "integrity": "sha512-P8MPErVO/y8ohWSP9JY7lLQ8+YMHfTI4bAdtCi3pC2hTeqFJco2jYspzOzTUB8hwUWIIu1xwOrJE11nP+0JFAQ==", 713 | "cpu": [ 714 | "s390x" 715 | ], 716 | "dev": true, 717 | "license": "MIT", 718 | "optional": true, 719 | "os": [ 720 | "linux" 721 | ] 722 | }, 723 | "node_modules/@rollup/rollup-linux-x64-gnu": { 724 | "version": "4.24.4", 725 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.24.4.tgz", 726 | "integrity": "sha512-K03TljaaoPK5FOyNMZAAEmhlyO49LaE4qCsr0lYHUKyb6QacTNF9pnfPpXnFlFD3TXuFbFbz7tJ51FujUXkXYA==", 727 | "cpu": [ 728 | "x64" 729 | ], 730 | "dev": true, 731 | "license": "MIT", 732 | "optional": true, 733 | "os": [ 734 | "linux" 735 | ] 736 | }, 737 | "node_modules/@rollup/rollup-linux-x64-musl": { 738 | "version": "4.24.4", 739 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.24.4.tgz", 740 | "integrity": "sha512-VJYl4xSl/wqG2D5xTYncVWW+26ICV4wubwN9Gs5NrqhJtayikwCXzPL8GDsLnaLU3WwhQ8W02IinYSFJfyo34Q==", 741 | "cpu": [ 742 | "x64" 743 | ], 744 | "dev": true, 745 | "license": "MIT", 746 | "optional": true, 747 | "os": [ 748 | "linux" 749 | ] 750 | }, 751 | "node_modules/@rollup/rollup-win32-arm64-msvc": { 752 | "version": "4.24.4", 753 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.24.4.tgz", 754 | "integrity": "sha512-ku2GvtPwQfCqoPFIJCqZ8o7bJcj+Y54cZSr43hHca6jLwAiCbZdBUOrqE6y29QFajNAzzpIOwsckaTFmN6/8TA==", 755 | "cpu": [ 756 | "arm64" 757 | ], 758 | "dev": true, 759 | "license": "MIT", 760 | "optional": true, 761 | "os": [ 762 | "win32" 763 | ] 764 | }, 765 | "node_modules/@rollup/rollup-win32-ia32-msvc": { 766 | "version": "4.24.4", 767 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.24.4.tgz", 768 | "integrity": "sha512-V3nCe+eTt/W6UYNr/wGvO1fLpHUrnlirlypZfKCT1fG6hWfqhPgQV/K/mRBXBpxc0eKLIF18pIOFVPh0mqHjlg==", 769 | "cpu": [ 770 | "ia32" 771 | ], 772 | "dev": true, 773 | "license": "MIT", 774 | "optional": true, 775 | "os": [ 776 | "win32" 777 | ] 778 | }, 779 | "node_modules/@rollup/rollup-win32-x64-msvc": { 780 | "version": "4.24.4", 781 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.24.4.tgz", 782 | "integrity": "sha512-LTw1Dfd0mBIEqUVCxbvTE/LLo+9ZxVC9k99v1v4ahg9Aak6FpqOfNu5kRkeTAn0wphoC4JU7No1/rL+bBCEwhg==", 783 | "cpu": [ 784 | "x64" 785 | ], 786 | "dev": true, 787 | "license": "MIT", 788 | "optional": true, 789 | "os": [ 790 | "win32" 791 | ] 792 | }, 793 | "node_modules/@types/estree": { 794 | "version": "1.0.6", 795 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 796 | "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", 797 | "dev": true, 798 | "license": "MIT" 799 | }, 800 | "node_modules/ansi-regex": { 801 | "version": "6.1.0", 802 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", 803 | "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", 804 | "dev": true, 805 | "license": "MIT", 806 | "engines": { 807 | "node": ">=12" 808 | }, 809 | "funding": { 810 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 811 | } 812 | }, 813 | "node_modules/ansi-styles": { 814 | "version": "4.3.0", 815 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 816 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 817 | "dev": true, 818 | "license": "MIT", 819 | "dependencies": { 820 | "color-convert": "^2.0.1" 821 | }, 822 | "engines": { 823 | "node": ">=8" 824 | }, 825 | "funding": { 826 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 827 | } 828 | }, 829 | "node_modules/any-promise": { 830 | "version": "1.3.0", 831 | "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", 832 | "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", 833 | "dev": true, 834 | "license": "MIT" 835 | }, 836 | "node_modules/anymatch": { 837 | "version": "3.1.3", 838 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 839 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 840 | "dev": true, 841 | "license": "ISC", 842 | "dependencies": { 843 | "normalize-path": "^3.0.0", 844 | "picomatch": "^2.0.4" 845 | }, 846 | "engines": { 847 | "node": ">= 8" 848 | } 849 | }, 850 | "node_modules/arg": { 851 | "version": "5.0.2", 852 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 853 | "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", 854 | "dev": true, 855 | "license": "MIT" 856 | }, 857 | "node_modules/asynckit": { 858 | "version": "0.4.0", 859 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 860 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", 861 | "dev": true, 862 | "license": "MIT" 863 | }, 864 | "node_modules/autoprefixer": { 865 | "version": "10.4.20", 866 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", 867 | "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", 868 | "dev": true, 869 | "funding": [ 870 | { 871 | "type": "opencollective", 872 | "url": "https://opencollective.com/postcss/" 873 | }, 874 | { 875 | "type": "tidelift", 876 | "url": "https://tidelift.com/funding/github/npm/autoprefixer" 877 | }, 878 | { 879 | "type": "github", 880 | "url": "https://github.com/sponsors/ai" 881 | } 882 | ], 883 | "license": "MIT", 884 | "dependencies": { 885 | "browserslist": "^4.23.3", 886 | "caniuse-lite": "^1.0.30001646", 887 | "fraction.js": "^4.3.7", 888 | "normalize-range": "^0.1.2", 889 | "picocolors": "^1.0.1", 890 | "postcss-value-parser": "^4.2.0" 891 | }, 892 | "bin": { 893 | "autoprefixer": "bin/autoprefixer" 894 | }, 895 | "engines": { 896 | "node": "^10 || ^12 || >=14" 897 | }, 898 | "peerDependencies": { 899 | "postcss": "^8.1.0" 900 | } 901 | }, 902 | "node_modules/axios": { 903 | "version": "1.7.7", 904 | "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.7.tgz", 905 | "integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==", 906 | "dev": true, 907 | "license": "MIT", 908 | "dependencies": { 909 | "follow-redirects": "^1.15.6", 910 | "form-data": "^4.0.0", 911 | "proxy-from-env": "^1.1.0" 912 | } 913 | }, 914 | "node_modules/balanced-match": { 915 | "version": "1.0.2", 916 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 917 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 918 | "dev": true, 919 | "license": "MIT" 920 | }, 921 | "node_modules/binary-extensions": { 922 | "version": "2.3.0", 923 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 924 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 925 | "dev": true, 926 | "license": "MIT", 927 | "engines": { 928 | "node": ">=8" 929 | }, 930 | "funding": { 931 | "url": "https://github.com/sponsors/sindresorhus" 932 | } 933 | }, 934 | "node_modules/brace-expansion": { 935 | "version": "2.0.1", 936 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 937 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 938 | "dev": true, 939 | "license": "MIT", 940 | "dependencies": { 941 | "balanced-match": "^1.0.0" 942 | } 943 | }, 944 | "node_modules/braces": { 945 | "version": "3.0.3", 946 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 947 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 948 | "dev": true, 949 | "license": "MIT", 950 | "dependencies": { 951 | "fill-range": "^7.1.1" 952 | }, 953 | "engines": { 954 | "node": ">=8" 955 | } 956 | }, 957 | "node_modules/browserslist": { 958 | "version": "4.24.2", 959 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", 960 | "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", 961 | "dev": true, 962 | "funding": [ 963 | { 964 | "type": "opencollective", 965 | "url": "https://opencollective.com/browserslist" 966 | }, 967 | { 968 | "type": "tidelift", 969 | "url": "https://tidelift.com/funding/github/npm/browserslist" 970 | }, 971 | { 972 | "type": "github", 973 | "url": "https://github.com/sponsors/ai" 974 | } 975 | ], 976 | "license": "MIT", 977 | "dependencies": { 978 | "caniuse-lite": "^1.0.30001669", 979 | "electron-to-chromium": "^1.5.41", 980 | "node-releases": "^2.0.18", 981 | "update-browserslist-db": "^1.1.1" 982 | }, 983 | "bin": { 984 | "browserslist": "cli.js" 985 | }, 986 | "engines": { 987 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 988 | } 989 | }, 990 | "node_modules/camelcase-css": { 991 | "version": "2.0.1", 992 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 993 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 994 | "dev": true, 995 | "license": "MIT", 996 | "engines": { 997 | "node": ">= 6" 998 | } 999 | }, 1000 | "node_modules/caniuse-lite": { 1001 | "version": "1.0.30001677", 1002 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001677.tgz", 1003 | "integrity": "sha512-fmfjsOlJUpMWu+mAAtZZZHz7UEwsUxIIvu1TJfO1HqFQvB/B+ii0xr9B5HpbZY/mC4XZ8SvjHJqtAY6pDPQEog==", 1004 | "dev": true, 1005 | "funding": [ 1006 | { 1007 | "type": "opencollective", 1008 | "url": "https://opencollective.com/browserslist" 1009 | }, 1010 | { 1011 | "type": "tidelift", 1012 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1013 | }, 1014 | { 1015 | "type": "github", 1016 | "url": "https://github.com/sponsors/ai" 1017 | } 1018 | ], 1019 | "license": "CC-BY-4.0" 1020 | }, 1021 | "node_modules/chalk": { 1022 | "version": "4.1.2", 1023 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1024 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1025 | "dev": true, 1026 | "license": "MIT", 1027 | "dependencies": { 1028 | "ansi-styles": "^4.1.0", 1029 | "supports-color": "^7.1.0" 1030 | }, 1031 | "engines": { 1032 | "node": ">=10" 1033 | }, 1034 | "funding": { 1035 | "url": "https://github.com/chalk/chalk?sponsor=1" 1036 | } 1037 | }, 1038 | "node_modules/chalk/node_modules/supports-color": { 1039 | "version": "7.2.0", 1040 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 1041 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 1042 | "dev": true, 1043 | "license": "MIT", 1044 | "dependencies": { 1045 | "has-flag": "^4.0.0" 1046 | }, 1047 | "engines": { 1048 | "node": ">=8" 1049 | } 1050 | }, 1051 | "node_modules/chokidar": { 1052 | "version": "3.6.0", 1053 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 1054 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 1055 | "dev": true, 1056 | "license": "MIT", 1057 | "dependencies": { 1058 | "anymatch": "~3.1.2", 1059 | "braces": "~3.0.2", 1060 | "glob-parent": "~5.1.2", 1061 | "is-binary-path": "~2.1.0", 1062 | "is-glob": "~4.0.1", 1063 | "normalize-path": "~3.0.0", 1064 | "readdirp": "~3.6.0" 1065 | }, 1066 | "engines": { 1067 | "node": ">= 8.10.0" 1068 | }, 1069 | "funding": { 1070 | "url": "https://paulmillr.com/funding/" 1071 | }, 1072 | "optionalDependencies": { 1073 | "fsevents": "~2.3.2" 1074 | } 1075 | }, 1076 | "node_modules/chokidar/node_modules/glob-parent": { 1077 | "version": "5.1.2", 1078 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1079 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1080 | "dev": true, 1081 | "license": "ISC", 1082 | "dependencies": { 1083 | "is-glob": "^4.0.1" 1084 | }, 1085 | "engines": { 1086 | "node": ">= 6" 1087 | } 1088 | }, 1089 | "node_modules/cliui": { 1090 | "version": "8.0.1", 1091 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", 1092 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 1093 | "dev": true, 1094 | "license": "ISC", 1095 | "dependencies": { 1096 | "string-width": "^4.2.0", 1097 | "strip-ansi": "^6.0.1", 1098 | "wrap-ansi": "^7.0.0" 1099 | }, 1100 | "engines": { 1101 | "node": ">=12" 1102 | } 1103 | }, 1104 | "node_modules/cliui/node_modules/ansi-regex": { 1105 | "version": "5.0.1", 1106 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1107 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1108 | "dev": true, 1109 | "license": "MIT", 1110 | "engines": { 1111 | "node": ">=8" 1112 | } 1113 | }, 1114 | "node_modules/cliui/node_modules/emoji-regex": { 1115 | "version": "8.0.0", 1116 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 1117 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 1118 | "dev": true, 1119 | "license": "MIT" 1120 | }, 1121 | "node_modules/cliui/node_modules/string-width": { 1122 | "version": "4.2.3", 1123 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 1124 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 1125 | "dev": true, 1126 | "license": "MIT", 1127 | "dependencies": { 1128 | "emoji-regex": "^8.0.0", 1129 | "is-fullwidth-code-point": "^3.0.0", 1130 | "strip-ansi": "^6.0.1" 1131 | }, 1132 | "engines": { 1133 | "node": ">=8" 1134 | } 1135 | }, 1136 | "node_modules/cliui/node_modules/strip-ansi": { 1137 | "version": "6.0.1", 1138 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 1139 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1140 | "dev": true, 1141 | "license": "MIT", 1142 | "dependencies": { 1143 | "ansi-regex": "^5.0.1" 1144 | }, 1145 | "engines": { 1146 | "node": ">=8" 1147 | } 1148 | }, 1149 | "node_modules/cliui/node_modules/wrap-ansi": { 1150 | "version": "7.0.0", 1151 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 1152 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 1153 | "dev": true, 1154 | "license": "MIT", 1155 | "dependencies": { 1156 | "ansi-styles": "^4.0.0", 1157 | "string-width": "^4.1.0", 1158 | "strip-ansi": "^6.0.0" 1159 | }, 1160 | "engines": { 1161 | "node": ">=10" 1162 | }, 1163 | "funding": { 1164 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 1165 | } 1166 | }, 1167 | "node_modules/color-convert": { 1168 | "version": "2.0.1", 1169 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1170 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1171 | "dev": true, 1172 | "license": "MIT", 1173 | "dependencies": { 1174 | "color-name": "~1.1.4" 1175 | }, 1176 | "engines": { 1177 | "node": ">=7.0.0" 1178 | } 1179 | }, 1180 | "node_modules/color-name": { 1181 | "version": "1.1.4", 1182 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1183 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1184 | "dev": true, 1185 | "license": "MIT" 1186 | }, 1187 | "node_modules/combined-stream": { 1188 | "version": "1.0.8", 1189 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 1190 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 1191 | "dev": true, 1192 | "license": "MIT", 1193 | "dependencies": { 1194 | "delayed-stream": "~1.0.0" 1195 | }, 1196 | "engines": { 1197 | "node": ">= 0.8" 1198 | } 1199 | }, 1200 | "node_modules/commander": { 1201 | "version": "4.1.1", 1202 | "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", 1203 | "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", 1204 | "dev": true, 1205 | "license": "MIT", 1206 | "engines": { 1207 | "node": ">= 6" 1208 | } 1209 | }, 1210 | "node_modules/concurrently": { 1211 | "version": "9.1.0", 1212 | "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-9.1.0.tgz", 1213 | "integrity": "sha512-VxkzwMAn4LP7WyMnJNbHN5mKV9L2IbyDjpzemKr99sXNR3GqRNMMHdm7prV1ws9wg7ETj6WUkNOigZVsptwbgg==", 1214 | "dev": true, 1215 | "license": "MIT", 1216 | "dependencies": { 1217 | "chalk": "^4.1.2", 1218 | "lodash": "^4.17.21", 1219 | "rxjs": "^7.8.1", 1220 | "shell-quote": "^1.8.1", 1221 | "supports-color": "^8.1.1", 1222 | "tree-kill": "^1.2.2", 1223 | "yargs": "^17.7.2" 1224 | }, 1225 | "bin": { 1226 | "conc": "dist/bin/concurrently.js", 1227 | "concurrently": "dist/bin/concurrently.js" 1228 | }, 1229 | "engines": { 1230 | "node": ">=18" 1231 | }, 1232 | "funding": { 1233 | "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" 1234 | } 1235 | }, 1236 | "node_modules/cross-spawn": { 1237 | "version": "7.0.3", 1238 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1239 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1240 | "dev": true, 1241 | "license": "MIT", 1242 | "dependencies": { 1243 | "path-key": "^3.1.0", 1244 | "shebang-command": "^2.0.0", 1245 | "which": "^2.0.1" 1246 | }, 1247 | "engines": { 1248 | "node": ">= 8" 1249 | } 1250 | }, 1251 | "node_modules/cssesc": { 1252 | "version": "3.0.0", 1253 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 1254 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 1255 | "dev": true, 1256 | "license": "MIT", 1257 | "bin": { 1258 | "cssesc": "bin/cssesc" 1259 | }, 1260 | "engines": { 1261 | "node": ">=4" 1262 | } 1263 | }, 1264 | "node_modules/delayed-stream": { 1265 | "version": "1.0.0", 1266 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 1267 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", 1268 | "dev": true, 1269 | "license": "MIT", 1270 | "engines": { 1271 | "node": ">=0.4.0" 1272 | } 1273 | }, 1274 | "node_modules/didyoumean": { 1275 | "version": "1.2.2", 1276 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 1277 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", 1278 | "dev": true, 1279 | "license": "Apache-2.0" 1280 | }, 1281 | "node_modules/dlv": { 1282 | "version": "1.1.3", 1283 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 1284 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", 1285 | "dev": true, 1286 | "license": "MIT" 1287 | }, 1288 | "node_modules/eastasianwidth": { 1289 | "version": "0.2.0", 1290 | "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 1291 | "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", 1292 | "dev": true, 1293 | "license": "MIT" 1294 | }, 1295 | "node_modules/electron-to-chromium": { 1296 | "version": "1.5.52", 1297 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.52.tgz", 1298 | "integrity": "sha512-xtoijJTZ+qeucLBDNztDOuQBE1ksqjvNjvqFoST3nGC7fSpqJ+X6BdTBaY5BHG+IhWWmpc6b/KfpeuEDupEPOQ==", 1299 | "dev": true, 1300 | "license": "ISC" 1301 | }, 1302 | "node_modules/emoji-regex": { 1303 | "version": "9.2.2", 1304 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 1305 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", 1306 | "dev": true, 1307 | "license": "MIT" 1308 | }, 1309 | "node_modules/esbuild": { 1310 | "version": "0.21.5", 1311 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", 1312 | "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", 1313 | "dev": true, 1314 | "hasInstallScript": true, 1315 | "license": "MIT", 1316 | "bin": { 1317 | "esbuild": "bin/esbuild" 1318 | }, 1319 | "engines": { 1320 | "node": ">=12" 1321 | }, 1322 | "optionalDependencies": { 1323 | "@esbuild/aix-ppc64": "0.21.5", 1324 | "@esbuild/android-arm": "0.21.5", 1325 | "@esbuild/android-arm64": "0.21.5", 1326 | "@esbuild/android-x64": "0.21.5", 1327 | "@esbuild/darwin-arm64": "0.21.5", 1328 | "@esbuild/darwin-x64": "0.21.5", 1329 | "@esbuild/freebsd-arm64": "0.21.5", 1330 | "@esbuild/freebsd-x64": "0.21.5", 1331 | "@esbuild/linux-arm": "0.21.5", 1332 | "@esbuild/linux-arm64": "0.21.5", 1333 | "@esbuild/linux-ia32": "0.21.5", 1334 | "@esbuild/linux-loong64": "0.21.5", 1335 | "@esbuild/linux-mips64el": "0.21.5", 1336 | "@esbuild/linux-ppc64": "0.21.5", 1337 | "@esbuild/linux-riscv64": "0.21.5", 1338 | "@esbuild/linux-s390x": "0.21.5", 1339 | "@esbuild/linux-x64": "0.21.5", 1340 | "@esbuild/netbsd-x64": "0.21.5", 1341 | "@esbuild/openbsd-x64": "0.21.5", 1342 | "@esbuild/sunos-x64": "0.21.5", 1343 | "@esbuild/win32-arm64": "0.21.5", 1344 | "@esbuild/win32-ia32": "0.21.5", 1345 | "@esbuild/win32-x64": "0.21.5" 1346 | } 1347 | }, 1348 | "node_modules/escalade": { 1349 | "version": "3.2.0", 1350 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 1351 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 1352 | "dev": true, 1353 | "license": "MIT", 1354 | "engines": { 1355 | "node": ">=6" 1356 | } 1357 | }, 1358 | "node_modules/fast-glob": { 1359 | "version": "3.3.2", 1360 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 1361 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 1362 | "dev": true, 1363 | "license": "MIT", 1364 | "dependencies": { 1365 | "@nodelib/fs.stat": "^2.0.2", 1366 | "@nodelib/fs.walk": "^1.2.3", 1367 | "glob-parent": "^5.1.2", 1368 | "merge2": "^1.3.0", 1369 | "micromatch": "^4.0.4" 1370 | }, 1371 | "engines": { 1372 | "node": ">=8.6.0" 1373 | } 1374 | }, 1375 | "node_modules/fast-glob/node_modules/glob-parent": { 1376 | "version": "5.1.2", 1377 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1378 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1379 | "dev": true, 1380 | "license": "ISC", 1381 | "dependencies": { 1382 | "is-glob": "^4.0.1" 1383 | }, 1384 | "engines": { 1385 | "node": ">= 6" 1386 | } 1387 | }, 1388 | "node_modules/fastq": { 1389 | "version": "1.17.1", 1390 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", 1391 | "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", 1392 | "dev": true, 1393 | "license": "ISC", 1394 | "dependencies": { 1395 | "reusify": "^1.0.4" 1396 | } 1397 | }, 1398 | "node_modules/fill-range": { 1399 | "version": "7.1.1", 1400 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1401 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1402 | "dev": true, 1403 | "license": "MIT", 1404 | "dependencies": { 1405 | "to-regex-range": "^5.0.1" 1406 | }, 1407 | "engines": { 1408 | "node": ">=8" 1409 | } 1410 | }, 1411 | "node_modules/follow-redirects": { 1412 | "version": "1.15.9", 1413 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", 1414 | "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", 1415 | "dev": true, 1416 | "funding": [ 1417 | { 1418 | "type": "individual", 1419 | "url": "https://github.com/sponsors/RubenVerborgh" 1420 | } 1421 | ], 1422 | "license": "MIT", 1423 | "engines": { 1424 | "node": ">=4.0" 1425 | }, 1426 | "peerDependenciesMeta": { 1427 | "debug": { 1428 | "optional": true 1429 | } 1430 | } 1431 | }, 1432 | "node_modules/foreground-child": { 1433 | "version": "3.3.0", 1434 | "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", 1435 | "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", 1436 | "dev": true, 1437 | "license": "ISC", 1438 | "dependencies": { 1439 | "cross-spawn": "^7.0.0", 1440 | "signal-exit": "^4.0.1" 1441 | }, 1442 | "engines": { 1443 | "node": ">=14" 1444 | }, 1445 | "funding": { 1446 | "url": "https://github.com/sponsors/isaacs" 1447 | } 1448 | }, 1449 | "node_modules/form-data": { 1450 | "version": "4.0.1", 1451 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz", 1452 | "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", 1453 | "dev": true, 1454 | "license": "MIT", 1455 | "dependencies": { 1456 | "asynckit": "^0.4.0", 1457 | "combined-stream": "^1.0.8", 1458 | "mime-types": "^2.1.12" 1459 | }, 1460 | "engines": { 1461 | "node": ">= 6" 1462 | } 1463 | }, 1464 | "node_modules/fraction.js": { 1465 | "version": "4.3.7", 1466 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", 1467 | "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", 1468 | "dev": true, 1469 | "license": "MIT", 1470 | "engines": { 1471 | "node": "*" 1472 | }, 1473 | "funding": { 1474 | "type": "patreon", 1475 | "url": "https://github.com/sponsors/rawify" 1476 | } 1477 | }, 1478 | "node_modules/fsevents": { 1479 | "version": "2.3.3", 1480 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1481 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1482 | "dev": true, 1483 | "hasInstallScript": true, 1484 | "license": "MIT", 1485 | "optional": true, 1486 | "os": [ 1487 | "darwin" 1488 | ], 1489 | "engines": { 1490 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1491 | } 1492 | }, 1493 | "node_modules/function-bind": { 1494 | "version": "1.1.2", 1495 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1496 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1497 | "dev": true, 1498 | "license": "MIT", 1499 | "funding": { 1500 | "url": "https://github.com/sponsors/ljharb" 1501 | } 1502 | }, 1503 | "node_modules/get-caller-file": { 1504 | "version": "2.0.5", 1505 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 1506 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 1507 | "dev": true, 1508 | "license": "ISC", 1509 | "engines": { 1510 | "node": "6.* || 8.* || >= 10.*" 1511 | } 1512 | }, 1513 | "node_modules/glob": { 1514 | "version": "10.4.5", 1515 | "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", 1516 | "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", 1517 | "dev": true, 1518 | "license": "ISC", 1519 | "dependencies": { 1520 | "foreground-child": "^3.1.0", 1521 | "jackspeak": "^3.1.2", 1522 | "minimatch": "^9.0.4", 1523 | "minipass": "^7.1.2", 1524 | "package-json-from-dist": "^1.0.0", 1525 | "path-scurry": "^1.11.1" 1526 | }, 1527 | "bin": { 1528 | "glob": "dist/esm/bin.mjs" 1529 | }, 1530 | "funding": { 1531 | "url": "https://github.com/sponsors/isaacs" 1532 | } 1533 | }, 1534 | "node_modules/glob-parent": { 1535 | "version": "6.0.2", 1536 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1537 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1538 | "dev": true, 1539 | "license": "ISC", 1540 | "dependencies": { 1541 | "is-glob": "^4.0.3" 1542 | }, 1543 | "engines": { 1544 | "node": ">=10.13.0" 1545 | } 1546 | }, 1547 | "node_modules/has-flag": { 1548 | "version": "4.0.0", 1549 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1550 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1551 | "dev": true, 1552 | "license": "MIT", 1553 | "engines": { 1554 | "node": ">=8" 1555 | } 1556 | }, 1557 | "node_modules/hasown": { 1558 | "version": "2.0.2", 1559 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 1560 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 1561 | "dev": true, 1562 | "license": "MIT", 1563 | "dependencies": { 1564 | "function-bind": "^1.1.2" 1565 | }, 1566 | "engines": { 1567 | "node": ">= 0.4" 1568 | } 1569 | }, 1570 | "node_modules/is-binary-path": { 1571 | "version": "2.1.0", 1572 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 1573 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 1574 | "dev": true, 1575 | "license": "MIT", 1576 | "dependencies": { 1577 | "binary-extensions": "^2.0.0" 1578 | }, 1579 | "engines": { 1580 | "node": ">=8" 1581 | } 1582 | }, 1583 | "node_modules/is-core-module": { 1584 | "version": "2.15.1", 1585 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", 1586 | "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", 1587 | "dev": true, 1588 | "license": "MIT", 1589 | "dependencies": { 1590 | "hasown": "^2.0.2" 1591 | }, 1592 | "engines": { 1593 | "node": ">= 0.4" 1594 | }, 1595 | "funding": { 1596 | "url": "https://github.com/sponsors/ljharb" 1597 | } 1598 | }, 1599 | "node_modules/is-extglob": { 1600 | "version": "2.1.1", 1601 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1602 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1603 | "dev": true, 1604 | "license": "MIT", 1605 | "engines": { 1606 | "node": ">=0.10.0" 1607 | } 1608 | }, 1609 | "node_modules/is-fullwidth-code-point": { 1610 | "version": "3.0.0", 1611 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 1612 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 1613 | "dev": true, 1614 | "license": "MIT", 1615 | "engines": { 1616 | "node": ">=8" 1617 | } 1618 | }, 1619 | "node_modules/is-glob": { 1620 | "version": "4.0.3", 1621 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1622 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1623 | "dev": true, 1624 | "license": "MIT", 1625 | "dependencies": { 1626 | "is-extglob": "^2.1.1" 1627 | }, 1628 | "engines": { 1629 | "node": ">=0.10.0" 1630 | } 1631 | }, 1632 | "node_modules/is-number": { 1633 | "version": "7.0.0", 1634 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1635 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1636 | "dev": true, 1637 | "license": "MIT", 1638 | "engines": { 1639 | "node": ">=0.12.0" 1640 | } 1641 | }, 1642 | "node_modules/isexe": { 1643 | "version": "2.0.0", 1644 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1645 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 1646 | "dev": true, 1647 | "license": "ISC" 1648 | }, 1649 | "node_modules/jackspeak": { 1650 | "version": "3.4.3", 1651 | "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", 1652 | "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", 1653 | "dev": true, 1654 | "license": "BlueOak-1.0.0", 1655 | "dependencies": { 1656 | "@isaacs/cliui": "^8.0.2" 1657 | }, 1658 | "funding": { 1659 | "url": "https://github.com/sponsors/isaacs" 1660 | }, 1661 | "optionalDependencies": { 1662 | "@pkgjs/parseargs": "^0.11.0" 1663 | } 1664 | }, 1665 | "node_modules/jiti": { 1666 | "version": "1.21.6", 1667 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", 1668 | "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", 1669 | "dev": true, 1670 | "license": "MIT", 1671 | "bin": { 1672 | "jiti": "bin/jiti.js" 1673 | } 1674 | }, 1675 | "node_modules/laravel-vite-plugin": { 1676 | "version": "1.0.5", 1677 | "resolved": "https://registry.npmjs.org/laravel-vite-plugin/-/laravel-vite-plugin-1.0.5.tgz", 1678 | "integrity": "sha512-Zv+to82YLBknDCZ6g3iwOv9wZ7f6EWStb9pjSm7MGe9Mfoy5ynT2ssZbGsMr1udU6rDg9HOoYEVGw5Qf+p9zbw==", 1679 | "dev": true, 1680 | "license": "MIT", 1681 | "dependencies": { 1682 | "picocolors": "^1.0.0", 1683 | "vite-plugin-full-reload": "^1.1.0" 1684 | }, 1685 | "bin": { 1686 | "clean-orphaned-assets": "bin/clean.js" 1687 | }, 1688 | "engines": { 1689 | "node": "^18.0.0 || >=20.0.0" 1690 | }, 1691 | "peerDependencies": { 1692 | "vite": "^5.0.0" 1693 | } 1694 | }, 1695 | "node_modules/lilconfig": { 1696 | "version": "2.1.0", 1697 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", 1698 | "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", 1699 | "dev": true, 1700 | "license": "MIT", 1701 | "engines": { 1702 | "node": ">=10" 1703 | } 1704 | }, 1705 | "node_modules/lines-and-columns": { 1706 | "version": "1.2.4", 1707 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 1708 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 1709 | "dev": true, 1710 | "license": "MIT" 1711 | }, 1712 | "node_modules/lodash": { 1713 | "version": "4.17.21", 1714 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 1715 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 1716 | "dev": true, 1717 | "license": "MIT" 1718 | }, 1719 | "node_modules/lru-cache": { 1720 | "version": "10.4.3", 1721 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", 1722 | "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", 1723 | "dev": true, 1724 | "license": "ISC" 1725 | }, 1726 | "node_modules/merge2": { 1727 | "version": "1.4.1", 1728 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 1729 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 1730 | "dev": true, 1731 | "license": "MIT", 1732 | "engines": { 1733 | "node": ">= 8" 1734 | } 1735 | }, 1736 | "node_modules/micromatch": { 1737 | "version": "4.0.8", 1738 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 1739 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 1740 | "dev": true, 1741 | "license": "MIT", 1742 | "dependencies": { 1743 | "braces": "^3.0.3", 1744 | "picomatch": "^2.3.1" 1745 | }, 1746 | "engines": { 1747 | "node": ">=8.6" 1748 | } 1749 | }, 1750 | "node_modules/mime-db": { 1751 | "version": "1.52.0", 1752 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 1753 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 1754 | "dev": true, 1755 | "license": "MIT", 1756 | "engines": { 1757 | "node": ">= 0.6" 1758 | } 1759 | }, 1760 | "node_modules/mime-types": { 1761 | "version": "2.1.35", 1762 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 1763 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 1764 | "dev": true, 1765 | "license": "MIT", 1766 | "dependencies": { 1767 | "mime-db": "1.52.0" 1768 | }, 1769 | "engines": { 1770 | "node": ">= 0.6" 1771 | } 1772 | }, 1773 | "node_modules/minimatch": { 1774 | "version": "9.0.5", 1775 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 1776 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 1777 | "dev": true, 1778 | "license": "ISC", 1779 | "dependencies": { 1780 | "brace-expansion": "^2.0.1" 1781 | }, 1782 | "engines": { 1783 | "node": ">=16 || 14 >=14.17" 1784 | }, 1785 | "funding": { 1786 | "url": "https://github.com/sponsors/isaacs" 1787 | } 1788 | }, 1789 | "node_modules/minipass": { 1790 | "version": "7.1.2", 1791 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", 1792 | "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", 1793 | "dev": true, 1794 | "license": "ISC", 1795 | "engines": { 1796 | "node": ">=16 || 14 >=14.17" 1797 | } 1798 | }, 1799 | "node_modules/mz": { 1800 | "version": "2.7.0", 1801 | "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", 1802 | "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", 1803 | "dev": true, 1804 | "license": "MIT", 1805 | "dependencies": { 1806 | "any-promise": "^1.0.0", 1807 | "object-assign": "^4.0.1", 1808 | "thenify-all": "^1.0.0" 1809 | } 1810 | }, 1811 | "node_modules/nanoid": { 1812 | "version": "3.3.7", 1813 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", 1814 | "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", 1815 | "dev": true, 1816 | "funding": [ 1817 | { 1818 | "type": "github", 1819 | "url": "https://github.com/sponsors/ai" 1820 | } 1821 | ], 1822 | "license": "MIT", 1823 | "bin": { 1824 | "nanoid": "bin/nanoid.cjs" 1825 | }, 1826 | "engines": { 1827 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 1828 | } 1829 | }, 1830 | "node_modules/node-releases": { 1831 | "version": "2.0.18", 1832 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", 1833 | "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", 1834 | "dev": true, 1835 | "license": "MIT" 1836 | }, 1837 | "node_modules/normalize-path": { 1838 | "version": "3.0.0", 1839 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 1840 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 1841 | "dev": true, 1842 | "license": "MIT", 1843 | "engines": { 1844 | "node": ">=0.10.0" 1845 | } 1846 | }, 1847 | "node_modules/normalize-range": { 1848 | "version": "0.1.2", 1849 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 1850 | "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", 1851 | "dev": true, 1852 | "license": "MIT", 1853 | "engines": { 1854 | "node": ">=0.10.0" 1855 | } 1856 | }, 1857 | "node_modules/object-assign": { 1858 | "version": "4.1.1", 1859 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 1860 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 1861 | "dev": true, 1862 | "license": "MIT", 1863 | "engines": { 1864 | "node": ">=0.10.0" 1865 | } 1866 | }, 1867 | "node_modules/object-hash": { 1868 | "version": "3.0.0", 1869 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", 1870 | "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", 1871 | "dev": true, 1872 | "license": "MIT", 1873 | "engines": { 1874 | "node": ">= 6" 1875 | } 1876 | }, 1877 | "node_modules/package-json-from-dist": { 1878 | "version": "1.0.1", 1879 | "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", 1880 | "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", 1881 | "dev": true, 1882 | "license": "BlueOak-1.0.0" 1883 | }, 1884 | "node_modules/path-key": { 1885 | "version": "3.1.1", 1886 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 1887 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 1888 | "dev": true, 1889 | "license": "MIT", 1890 | "engines": { 1891 | "node": ">=8" 1892 | } 1893 | }, 1894 | "node_modules/path-parse": { 1895 | "version": "1.0.7", 1896 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 1897 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 1898 | "dev": true, 1899 | "license": "MIT" 1900 | }, 1901 | "node_modules/path-scurry": { 1902 | "version": "1.11.1", 1903 | "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", 1904 | "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", 1905 | "dev": true, 1906 | "license": "BlueOak-1.0.0", 1907 | "dependencies": { 1908 | "lru-cache": "^10.2.0", 1909 | "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" 1910 | }, 1911 | "engines": { 1912 | "node": ">=16 || 14 >=14.18" 1913 | }, 1914 | "funding": { 1915 | "url": "https://github.com/sponsors/isaacs" 1916 | } 1917 | }, 1918 | "node_modules/picocolors": { 1919 | "version": "1.1.1", 1920 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 1921 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 1922 | "dev": true, 1923 | "license": "ISC" 1924 | }, 1925 | "node_modules/picomatch": { 1926 | "version": "2.3.1", 1927 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 1928 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1929 | "dev": true, 1930 | "license": "MIT", 1931 | "engines": { 1932 | "node": ">=8.6" 1933 | }, 1934 | "funding": { 1935 | "url": "https://github.com/sponsors/jonschlinkert" 1936 | } 1937 | }, 1938 | "node_modules/pify": { 1939 | "version": "2.3.0", 1940 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 1941 | "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", 1942 | "dev": true, 1943 | "license": "MIT", 1944 | "engines": { 1945 | "node": ">=0.10.0" 1946 | } 1947 | }, 1948 | "node_modules/pirates": { 1949 | "version": "4.0.6", 1950 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", 1951 | "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", 1952 | "dev": true, 1953 | "license": "MIT", 1954 | "engines": { 1955 | "node": ">= 6" 1956 | } 1957 | }, 1958 | "node_modules/postcss": { 1959 | "version": "8.4.47", 1960 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz", 1961 | "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", 1962 | "dev": true, 1963 | "funding": [ 1964 | { 1965 | "type": "opencollective", 1966 | "url": "https://opencollective.com/postcss/" 1967 | }, 1968 | { 1969 | "type": "tidelift", 1970 | "url": "https://tidelift.com/funding/github/npm/postcss" 1971 | }, 1972 | { 1973 | "type": "github", 1974 | "url": "https://github.com/sponsors/ai" 1975 | } 1976 | ], 1977 | "license": "MIT", 1978 | "dependencies": { 1979 | "nanoid": "^3.3.7", 1980 | "picocolors": "^1.1.0", 1981 | "source-map-js": "^1.2.1" 1982 | }, 1983 | "engines": { 1984 | "node": "^10 || ^12 || >=14" 1985 | } 1986 | }, 1987 | "node_modules/postcss-import": { 1988 | "version": "15.1.0", 1989 | "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", 1990 | "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", 1991 | "dev": true, 1992 | "license": "MIT", 1993 | "dependencies": { 1994 | "postcss-value-parser": "^4.0.0", 1995 | "read-cache": "^1.0.0", 1996 | "resolve": "^1.1.7" 1997 | }, 1998 | "engines": { 1999 | "node": ">=14.0.0" 2000 | }, 2001 | "peerDependencies": { 2002 | "postcss": "^8.0.0" 2003 | } 2004 | }, 2005 | "node_modules/postcss-js": { 2006 | "version": "4.0.1", 2007 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", 2008 | "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", 2009 | "dev": true, 2010 | "license": "MIT", 2011 | "dependencies": { 2012 | "camelcase-css": "^2.0.1" 2013 | }, 2014 | "engines": { 2015 | "node": "^12 || ^14 || >= 16" 2016 | }, 2017 | "funding": { 2018 | "type": "opencollective", 2019 | "url": "https://opencollective.com/postcss/" 2020 | }, 2021 | "peerDependencies": { 2022 | "postcss": "^8.4.21" 2023 | } 2024 | }, 2025 | "node_modules/postcss-load-config": { 2026 | "version": "4.0.2", 2027 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", 2028 | "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", 2029 | "dev": true, 2030 | "funding": [ 2031 | { 2032 | "type": "opencollective", 2033 | "url": "https://opencollective.com/postcss/" 2034 | }, 2035 | { 2036 | "type": "github", 2037 | "url": "https://github.com/sponsors/ai" 2038 | } 2039 | ], 2040 | "license": "MIT", 2041 | "dependencies": { 2042 | "lilconfig": "^3.0.0", 2043 | "yaml": "^2.3.4" 2044 | }, 2045 | "engines": { 2046 | "node": ">= 14" 2047 | }, 2048 | "peerDependencies": { 2049 | "postcss": ">=8.0.9", 2050 | "ts-node": ">=9.0.0" 2051 | }, 2052 | "peerDependenciesMeta": { 2053 | "postcss": { 2054 | "optional": true 2055 | }, 2056 | "ts-node": { 2057 | "optional": true 2058 | } 2059 | } 2060 | }, 2061 | "node_modules/postcss-load-config/node_modules/lilconfig": { 2062 | "version": "3.1.2", 2063 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", 2064 | "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", 2065 | "dev": true, 2066 | "license": "MIT", 2067 | "engines": { 2068 | "node": ">=14" 2069 | }, 2070 | "funding": { 2071 | "url": "https://github.com/sponsors/antonk52" 2072 | } 2073 | }, 2074 | "node_modules/postcss-nested": { 2075 | "version": "6.2.0", 2076 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", 2077 | "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", 2078 | "dev": true, 2079 | "funding": [ 2080 | { 2081 | "type": "opencollective", 2082 | "url": "https://opencollective.com/postcss/" 2083 | }, 2084 | { 2085 | "type": "github", 2086 | "url": "https://github.com/sponsors/ai" 2087 | } 2088 | ], 2089 | "license": "MIT", 2090 | "dependencies": { 2091 | "postcss-selector-parser": "^6.1.1" 2092 | }, 2093 | "engines": { 2094 | "node": ">=12.0" 2095 | }, 2096 | "peerDependencies": { 2097 | "postcss": "^8.2.14" 2098 | } 2099 | }, 2100 | "node_modules/postcss-selector-parser": { 2101 | "version": "6.1.2", 2102 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", 2103 | "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", 2104 | "dev": true, 2105 | "license": "MIT", 2106 | "dependencies": { 2107 | "cssesc": "^3.0.0", 2108 | "util-deprecate": "^1.0.2" 2109 | }, 2110 | "engines": { 2111 | "node": ">=4" 2112 | } 2113 | }, 2114 | "node_modules/postcss-value-parser": { 2115 | "version": "4.2.0", 2116 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 2117 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", 2118 | "dev": true, 2119 | "license": "MIT" 2120 | }, 2121 | "node_modules/proxy-from-env": { 2122 | "version": "1.1.0", 2123 | "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", 2124 | "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", 2125 | "dev": true, 2126 | "license": "MIT" 2127 | }, 2128 | "node_modules/queue-microtask": { 2129 | "version": "1.2.3", 2130 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2131 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2132 | "dev": true, 2133 | "funding": [ 2134 | { 2135 | "type": "github", 2136 | "url": "https://github.com/sponsors/feross" 2137 | }, 2138 | { 2139 | "type": "patreon", 2140 | "url": "https://www.patreon.com/feross" 2141 | }, 2142 | { 2143 | "type": "consulting", 2144 | "url": "https://feross.org/support" 2145 | } 2146 | ], 2147 | "license": "MIT" 2148 | }, 2149 | "node_modules/read-cache": { 2150 | "version": "1.0.0", 2151 | "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", 2152 | "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", 2153 | "dev": true, 2154 | "license": "MIT", 2155 | "dependencies": { 2156 | "pify": "^2.3.0" 2157 | } 2158 | }, 2159 | "node_modules/readdirp": { 2160 | "version": "3.6.0", 2161 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 2162 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 2163 | "dev": true, 2164 | "license": "MIT", 2165 | "dependencies": { 2166 | "picomatch": "^2.2.1" 2167 | }, 2168 | "engines": { 2169 | "node": ">=8.10.0" 2170 | } 2171 | }, 2172 | "node_modules/require-directory": { 2173 | "version": "2.1.1", 2174 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 2175 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 2176 | "dev": true, 2177 | "license": "MIT", 2178 | "engines": { 2179 | "node": ">=0.10.0" 2180 | } 2181 | }, 2182 | "node_modules/resolve": { 2183 | "version": "1.22.8", 2184 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 2185 | "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 2186 | "dev": true, 2187 | "license": "MIT", 2188 | "dependencies": { 2189 | "is-core-module": "^2.13.0", 2190 | "path-parse": "^1.0.7", 2191 | "supports-preserve-symlinks-flag": "^1.0.0" 2192 | }, 2193 | "bin": { 2194 | "resolve": "bin/resolve" 2195 | }, 2196 | "funding": { 2197 | "url": "https://github.com/sponsors/ljharb" 2198 | } 2199 | }, 2200 | "node_modules/reusify": { 2201 | "version": "1.0.4", 2202 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 2203 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 2204 | "dev": true, 2205 | "license": "MIT", 2206 | "engines": { 2207 | "iojs": ">=1.0.0", 2208 | "node": ">=0.10.0" 2209 | } 2210 | }, 2211 | "node_modules/rollup": { 2212 | "version": "4.24.4", 2213 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.24.4.tgz", 2214 | "integrity": "sha512-vGorVWIsWfX3xbcyAS+I047kFKapHYivmkaT63Smj77XwvLSJos6M1xGqZnBPFQFBRZDOcG1QnYEIxAvTr/HjA==", 2215 | "dev": true, 2216 | "license": "MIT", 2217 | "dependencies": { 2218 | "@types/estree": "1.0.6" 2219 | }, 2220 | "bin": { 2221 | "rollup": "dist/bin/rollup" 2222 | }, 2223 | "engines": { 2224 | "node": ">=18.0.0", 2225 | "npm": ">=8.0.0" 2226 | }, 2227 | "optionalDependencies": { 2228 | "@rollup/rollup-android-arm-eabi": "4.24.4", 2229 | "@rollup/rollup-android-arm64": "4.24.4", 2230 | "@rollup/rollup-darwin-arm64": "4.24.4", 2231 | "@rollup/rollup-darwin-x64": "4.24.4", 2232 | "@rollup/rollup-freebsd-arm64": "4.24.4", 2233 | "@rollup/rollup-freebsd-x64": "4.24.4", 2234 | "@rollup/rollup-linux-arm-gnueabihf": "4.24.4", 2235 | "@rollup/rollup-linux-arm-musleabihf": "4.24.4", 2236 | "@rollup/rollup-linux-arm64-gnu": "4.24.4", 2237 | "@rollup/rollup-linux-arm64-musl": "4.24.4", 2238 | "@rollup/rollup-linux-powerpc64le-gnu": "4.24.4", 2239 | "@rollup/rollup-linux-riscv64-gnu": "4.24.4", 2240 | "@rollup/rollup-linux-s390x-gnu": "4.24.4", 2241 | "@rollup/rollup-linux-x64-gnu": "4.24.4", 2242 | "@rollup/rollup-linux-x64-musl": "4.24.4", 2243 | "@rollup/rollup-win32-arm64-msvc": "4.24.4", 2244 | "@rollup/rollup-win32-ia32-msvc": "4.24.4", 2245 | "@rollup/rollup-win32-x64-msvc": "4.24.4", 2246 | "fsevents": "~2.3.2" 2247 | } 2248 | }, 2249 | "node_modules/run-parallel": { 2250 | "version": "1.2.0", 2251 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 2252 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2253 | "dev": true, 2254 | "funding": [ 2255 | { 2256 | "type": "github", 2257 | "url": "https://github.com/sponsors/feross" 2258 | }, 2259 | { 2260 | "type": "patreon", 2261 | "url": "https://www.patreon.com/feross" 2262 | }, 2263 | { 2264 | "type": "consulting", 2265 | "url": "https://feross.org/support" 2266 | } 2267 | ], 2268 | "license": "MIT", 2269 | "dependencies": { 2270 | "queue-microtask": "^1.2.2" 2271 | } 2272 | }, 2273 | "node_modules/rxjs": { 2274 | "version": "7.8.1", 2275 | "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", 2276 | "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", 2277 | "dev": true, 2278 | "license": "Apache-2.0", 2279 | "dependencies": { 2280 | "tslib": "^2.1.0" 2281 | } 2282 | }, 2283 | "node_modules/shebang-command": { 2284 | "version": "2.0.0", 2285 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 2286 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 2287 | "dev": true, 2288 | "license": "MIT", 2289 | "dependencies": { 2290 | "shebang-regex": "^3.0.0" 2291 | }, 2292 | "engines": { 2293 | "node": ">=8" 2294 | } 2295 | }, 2296 | "node_modules/shebang-regex": { 2297 | "version": "3.0.0", 2298 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 2299 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 2300 | "dev": true, 2301 | "license": "MIT", 2302 | "engines": { 2303 | "node": ">=8" 2304 | } 2305 | }, 2306 | "node_modules/shell-quote": { 2307 | "version": "1.8.1", 2308 | "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", 2309 | "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", 2310 | "dev": true, 2311 | "license": "MIT", 2312 | "funding": { 2313 | "url": "https://github.com/sponsors/ljharb" 2314 | } 2315 | }, 2316 | "node_modules/signal-exit": { 2317 | "version": "4.1.0", 2318 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 2319 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 2320 | "dev": true, 2321 | "license": "ISC", 2322 | "engines": { 2323 | "node": ">=14" 2324 | }, 2325 | "funding": { 2326 | "url": "https://github.com/sponsors/isaacs" 2327 | } 2328 | }, 2329 | "node_modules/source-map-js": { 2330 | "version": "1.2.1", 2331 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 2332 | "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 2333 | "dev": true, 2334 | "license": "BSD-3-Clause", 2335 | "engines": { 2336 | "node": ">=0.10.0" 2337 | } 2338 | }, 2339 | "node_modules/string-width": { 2340 | "version": "5.1.2", 2341 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", 2342 | "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 2343 | "dev": true, 2344 | "license": "MIT", 2345 | "dependencies": { 2346 | "eastasianwidth": "^0.2.0", 2347 | "emoji-regex": "^9.2.2", 2348 | "strip-ansi": "^7.0.1" 2349 | }, 2350 | "engines": { 2351 | "node": ">=12" 2352 | }, 2353 | "funding": { 2354 | "url": "https://github.com/sponsors/sindresorhus" 2355 | } 2356 | }, 2357 | "node_modules/string-width-cjs": { 2358 | "name": "string-width", 2359 | "version": "4.2.3", 2360 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 2361 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2362 | "dev": true, 2363 | "license": "MIT", 2364 | "dependencies": { 2365 | "emoji-regex": "^8.0.0", 2366 | "is-fullwidth-code-point": "^3.0.0", 2367 | "strip-ansi": "^6.0.1" 2368 | }, 2369 | "engines": { 2370 | "node": ">=8" 2371 | } 2372 | }, 2373 | "node_modules/string-width-cjs/node_modules/ansi-regex": { 2374 | "version": "5.0.1", 2375 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 2376 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 2377 | "dev": true, 2378 | "license": "MIT", 2379 | "engines": { 2380 | "node": ">=8" 2381 | } 2382 | }, 2383 | "node_modules/string-width-cjs/node_modules/emoji-regex": { 2384 | "version": "8.0.0", 2385 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 2386 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 2387 | "dev": true, 2388 | "license": "MIT" 2389 | }, 2390 | "node_modules/string-width-cjs/node_modules/strip-ansi": { 2391 | "version": "6.0.1", 2392 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2393 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2394 | "dev": true, 2395 | "license": "MIT", 2396 | "dependencies": { 2397 | "ansi-regex": "^5.0.1" 2398 | }, 2399 | "engines": { 2400 | "node": ">=8" 2401 | } 2402 | }, 2403 | "node_modules/strip-ansi": { 2404 | "version": "7.1.0", 2405 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 2406 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 2407 | "dev": true, 2408 | "license": "MIT", 2409 | "dependencies": { 2410 | "ansi-regex": "^6.0.1" 2411 | }, 2412 | "engines": { 2413 | "node": ">=12" 2414 | }, 2415 | "funding": { 2416 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 2417 | } 2418 | }, 2419 | "node_modules/strip-ansi-cjs": { 2420 | "name": "strip-ansi", 2421 | "version": "6.0.1", 2422 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2423 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2424 | "dev": true, 2425 | "license": "MIT", 2426 | "dependencies": { 2427 | "ansi-regex": "^5.0.1" 2428 | }, 2429 | "engines": { 2430 | "node": ">=8" 2431 | } 2432 | }, 2433 | "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { 2434 | "version": "5.0.1", 2435 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 2436 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 2437 | "dev": true, 2438 | "license": "MIT", 2439 | "engines": { 2440 | "node": ">=8" 2441 | } 2442 | }, 2443 | "node_modules/sucrase": { 2444 | "version": "3.35.0", 2445 | "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", 2446 | "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", 2447 | "dev": true, 2448 | "license": "MIT", 2449 | "dependencies": { 2450 | "@jridgewell/gen-mapping": "^0.3.2", 2451 | "commander": "^4.0.0", 2452 | "glob": "^10.3.10", 2453 | "lines-and-columns": "^1.1.6", 2454 | "mz": "^2.7.0", 2455 | "pirates": "^4.0.1", 2456 | "ts-interface-checker": "^0.1.9" 2457 | }, 2458 | "bin": { 2459 | "sucrase": "bin/sucrase", 2460 | "sucrase-node": "bin/sucrase-node" 2461 | }, 2462 | "engines": { 2463 | "node": ">=16 || 14 >=14.17" 2464 | } 2465 | }, 2466 | "node_modules/supports-color": { 2467 | "version": "8.1.1", 2468 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 2469 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 2470 | "dev": true, 2471 | "license": "MIT", 2472 | "dependencies": { 2473 | "has-flag": "^4.0.0" 2474 | }, 2475 | "engines": { 2476 | "node": ">=10" 2477 | }, 2478 | "funding": { 2479 | "url": "https://github.com/chalk/supports-color?sponsor=1" 2480 | } 2481 | }, 2482 | "node_modules/supports-preserve-symlinks-flag": { 2483 | "version": "1.0.0", 2484 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 2485 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 2486 | "dev": true, 2487 | "license": "MIT", 2488 | "engines": { 2489 | "node": ">= 0.4" 2490 | }, 2491 | "funding": { 2492 | "url": "https://github.com/sponsors/ljharb" 2493 | } 2494 | }, 2495 | "node_modules/tailwindcss": { 2496 | "version": "3.4.14", 2497 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.14.tgz", 2498 | "integrity": "sha512-IcSvOcTRcUtQQ7ILQL5quRDg7Xs93PdJEk1ZLbhhvJc7uj/OAhYOnruEiwnGgBvUtaUAJ8/mhSw1o8L2jCiENA==", 2499 | "dev": true, 2500 | "license": "MIT", 2501 | "dependencies": { 2502 | "@alloc/quick-lru": "^5.2.0", 2503 | "arg": "^5.0.2", 2504 | "chokidar": "^3.5.3", 2505 | "didyoumean": "^1.2.2", 2506 | "dlv": "^1.1.3", 2507 | "fast-glob": "^3.3.0", 2508 | "glob-parent": "^6.0.2", 2509 | "is-glob": "^4.0.3", 2510 | "jiti": "^1.21.0", 2511 | "lilconfig": "^2.1.0", 2512 | "micromatch": "^4.0.5", 2513 | "normalize-path": "^3.0.0", 2514 | "object-hash": "^3.0.0", 2515 | "picocolors": "^1.0.0", 2516 | "postcss": "^8.4.23", 2517 | "postcss-import": "^15.1.0", 2518 | "postcss-js": "^4.0.1", 2519 | "postcss-load-config": "^4.0.1", 2520 | "postcss-nested": "^6.0.1", 2521 | "postcss-selector-parser": "^6.0.11", 2522 | "resolve": "^1.22.2", 2523 | "sucrase": "^3.32.0" 2524 | }, 2525 | "bin": { 2526 | "tailwind": "lib/cli.js", 2527 | "tailwindcss": "lib/cli.js" 2528 | }, 2529 | "engines": { 2530 | "node": ">=14.0.0" 2531 | } 2532 | }, 2533 | "node_modules/thenify": { 2534 | "version": "3.3.1", 2535 | "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", 2536 | "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", 2537 | "dev": true, 2538 | "license": "MIT", 2539 | "dependencies": { 2540 | "any-promise": "^1.0.0" 2541 | } 2542 | }, 2543 | "node_modules/thenify-all": { 2544 | "version": "1.6.0", 2545 | "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", 2546 | "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", 2547 | "dev": true, 2548 | "license": "MIT", 2549 | "dependencies": { 2550 | "thenify": ">= 3.1.0 < 4" 2551 | }, 2552 | "engines": { 2553 | "node": ">=0.8" 2554 | } 2555 | }, 2556 | "node_modules/to-regex-range": { 2557 | "version": "5.0.1", 2558 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 2559 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 2560 | "dev": true, 2561 | "license": "MIT", 2562 | "dependencies": { 2563 | "is-number": "^7.0.0" 2564 | }, 2565 | "engines": { 2566 | "node": ">=8.0" 2567 | } 2568 | }, 2569 | "node_modules/tree-kill": { 2570 | "version": "1.2.2", 2571 | "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", 2572 | "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", 2573 | "dev": true, 2574 | "license": "MIT", 2575 | "bin": { 2576 | "tree-kill": "cli.js" 2577 | } 2578 | }, 2579 | "node_modules/ts-interface-checker": { 2580 | "version": "0.1.13", 2581 | "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", 2582 | "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", 2583 | "dev": true, 2584 | "license": "Apache-2.0" 2585 | }, 2586 | "node_modules/tslib": { 2587 | "version": "2.8.1", 2588 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", 2589 | "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", 2590 | "dev": true, 2591 | "license": "0BSD" 2592 | }, 2593 | "node_modules/update-browserslist-db": { 2594 | "version": "1.1.1", 2595 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", 2596 | "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", 2597 | "dev": true, 2598 | "funding": [ 2599 | { 2600 | "type": "opencollective", 2601 | "url": "https://opencollective.com/browserslist" 2602 | }, 2603 | { 2604 | "type": "tidelift", 2605 | "url": "https://tidelift.com/funding/github/npm/browserslist" 2606 | }, 2607 | { 2608 | "type": "github", 2609 | "url": "https://github.com/sponsors/ai" 2610 | } 2611 | ], 2612 | "license": "MIT", 2613 | "dependencies": { 2614 | "escalade": "^3.2.0", 2615 | "picocolors": "^1.1.0" 2616 | }, 2617 | "bin": { 2618 | "update-browserslist-db": "cli.js" 2619 | }, 2620 | "peerDependencies": { 2621 | "browserslist": ">= 4.21.0" 2622 | } 2623 | }, 2624 | "node_modules/util-deprecate": { 2625 | "version": "1.0.2", 2626 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 2627 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 2628 | "dev": true, 2629 | "license": "MIT" 2630 | }, 2631 | "node_modules/vite": { 2632 | "version": "5.4.10", 2633 | "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.10.tgz", 2634 | "integrity": "sha512-1hvaPshuPUtxeQ0hsVH3Mud0ZanOLwVTneA1EgbAM5LhaZEqyPWGRQ7BtaMvUrTDeEaC8pxtj6a6jku3x4z6SQ==", 2635 | "dev": true, 2636 | "license": "MIT", 2637 | "dependencies": { 2638 | "esbuild": "^0.21.3", 2639 | "postcss": "^8.4.43", 2640 | "rollup": "^4.20.0" 2641 | }, 2642 | "bin": { 2643 | "vite": "bin/vite.js" 2644 | }, 2645 | "engines": { 2646 | "node": "^18.0.0 || >=20.0.0" 2647 | }, 2648 | "funding": { 2649 | "url": "https://github.com/vitejs/vite?sponsor=1" 2650 | }, 2651 | "optionalDependencies": { 2652 | "fsevents": "~2.3.3" 2653 | }, 2654 | "peerDependencies": { 2655 | "@types/node": "^18.0.0 || >=20.0.0", 2656 | "less": "*", 2657 | "lightningcss": "^1.21.0", 2658 | "sass": "*", 2659 | "sass-embedded": "*", 2660 | "stylus": "*", 2661 | "sugarss": "*", 2662 | "terser": "^5.4.0" 2663 | }, 2664 | "peerDependenciesMeta": { 2665 | "@types/node": { 2666 | "optional": true 2667 | }, 2668 | "less": { 2669 | "optional": true 2670 | }, 2671 | "lightningcss": { 2672 | "optional": true 2673 | }, 2674 | "sass": { 2675 | "optional": true 2676 | }, 2677 | "sass-embedded": { 2678 | "optional": true 2679 | }, 2680 | "stylus": { 2681 | "optional": true 2682 | }, 2683 | "sugarss": { 2684 | "optional": true 2685 | }, 2686 | "terser": { 2687 | "optional": true 2688 | } 2689 | } 2690 | }, 2691 | "node_modules/vite-plugin-full-reload": { 2692 | "version": "1.2.0", 2693 | "resolved": "https://registry.npmjs.org/vite-plugin-full-reload/-/vite-plugin-full-reload-1.2.0.tgz", 2694 | "integrity": "sha512-kz18NW79x0IHbxRSHm0jttP4zoO9P9gXh+n6UTwlNKnviTTEpOlum6oS9SmecrTtSr+muHEn5TUuC75UovQzcA==", 2695 | "dev": true, 2696 | "license": "MIT", 2697 | "dependencies": { 2698 | "picocolors": "^1.0.0", 2699 | "picomatch": "^2.3.1" 2700 | } 2701 | }, 2702 | "node_modules/which": { 2703 | "version": "2.0.2", 2704 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 2705 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 2706 | "dev": true, 2707 | "license": "ISC", 2708 | "dependencies": { 2709 | "isexe": "^2.0.0" 2710 | }, 2711 | "bin": { 2712 | "node-which": "bin/node-which" 2713 | }, 2714 | "engines": { 2715 | "node": ">= 8" 2716 | } 2717 | }, 2718 | "node_modules/wrap-ansi": { 2719 | "version": "8.1.0", 2720 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 2721 | "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 2722 | "dev": true, 2723 | "license": "MIT", 2724 | "dependencies": { 2725 | "ansi-styles": "^6.1.0", 2726 | "string-width": "^5.0.1", 2727 | "strip-ansi": "^7.0.1" 2728 | }, 2729 | "engines": { 2730 | "node": ">=12" 2731 | }, 2732 | "funding": { 2733 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 2734 | } 2735 | }, 2736 | "node_modules/wrap-ansi-cjs": { 2737 | "name": "wrap-ansi", 2738 | "version": "7.0.0", 2739 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 2740 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 2741 | "dev": true, 2742 | "license": "MIT", 2743 | "dependencies": { 2744 | "ansi-styles": "^4.0.0", 2745 | "string-width": "^4.1.0", 2746 | "strip-ansi": "^6.0.0" 2747 | }, 2748 | "engines": { 2749 | "node": ">=10" 2750 | }, 2751 | "funding": { 2752 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 2753 | } 2754 | }, 2755 | "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { 2756 | "version": "5.0.1", 2757 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 2758 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 2759 | "dev": true, 2760 | "license": "MIT", 2761 | "engines": { 2762 | "node": ">=8" 2763 | } 2764 | }, 2765 | "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { 2766 | "version": "8.0.0", 2767 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 2768 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 2769 | "dev": true, 2770 | "license": "MIT" 2771 | }, 2772 | "node_modules/wrap-ansi-cjs/node_modules/string-width": { 2773 | "version": "4.2.3", 2774 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 2775 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2776 | "dev": true, 2777 | "license": "MIT", 2778 | "dependencies": { 2779 | "emoji-regex": "^8.0.0", 2780 | "is-fullwidth-code-point": "^3.0.0", 2781 | "strip-ansi": "^6.0.1" 2782 | }, 2783 | "engines": { 2784 | "node": ">=8" 2785 | } 2786 | }, 2787 | "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { 2788 | "version": "6.0.1", 2789 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2790 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2791 | "dev": true, 2792 | "license": "MIT", 2793 | "dependencies": { 2794 | "ansi-regex": "^5.0.1" 2795 | }, 2796 | "engines": { 2797 | "node": ">=8" 2798 | } 2799 | }, 2800 | "node_modules/wrap-ansi/node_modules/ansi-styles": { 2801 | "version": "6.2.1", 2802 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 2803 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 2804 | "dev": true, 2805 | "license": "MIT", 2806 | "engines": { 2807 | "node": ">=12" 2808 | }, 2809 | "funding": { 2810 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 2811 | } 2812 | }, 2813 | "node_modules/y18n": { 2814 | "version": "5.0.8", 2815 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 2816 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 2817 | "dev": true, 2818 | "license": "ISC", 2819 | "engines": { 2820 | "node": ">=10" 2821 | } 2822 | }, 2823 | "node_modules/yaml": { 2824 | "version": "2.6.0", 2825 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.0.tgz", 2826 | "integrity": "sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==", 2827 | "dev": true, 2828 | "license": "ISC", 2829 | "bin": { 2830 | "yaml": "bin.mjs" 2831 | }, 2832 | "engines": { 2833 | "node": ">= 14" 2834 | } 2835 | }, 2836 | "node_modules/yargs": { 2837 | "version": "17.7.2", 2838 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", 2839 | "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", 2840 | "dev": true, 2841 | "license": "MIT", 2842 | "dependencies": { 2843 | "cliui": "^8.0.1", 2844 | "escalade": "^3.1.1", 2845 | "get-caller-file": "^2.0.5", 2846 | "require-directory": "^2.1.1", 2847 | "string-width": "^4.2.3", 2848 | "y18n": "^5.0.5", 2849 | "yargs-parser": "^21.1.1" 2850 | }, 2851 | "engines": { 2852 | "node": ">=12" 2853 | } 2854 | }, 2855 | "node_modules/yargs-parser": { 2856 | "version": "21.1.1", 2857 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 2858 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 2859 | "dev": true, 2860 | "license": "ISC", 2861 | "engines": { 2862 | "node": ">=12" 2863 | } 2864 | }, 2865 | "node_modules/yargs/node_modules/ansi-regex": { 2866 | "version": "5.0.1", 2867 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 2868 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 2869 | "dev": true, 2870 | "license": "MIT", 2871 | "engines": { 2872 | "node": ">=8" 2873 | } 2874 | }, 2875 | "node_modules/yargs/node_modules/emoji-regex": { 2876 | "version": "8.0.0", 2877 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 2878 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 2879 | "dev": true, 2880 | "license": "MIT" 2881 | }, 2882 | "node_modules/yargs/node_modules/string-width": { 2883 | "version": "4.2.3", 2884 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 2885 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2886 | "dev": true, 2887 | "license": "MIT", 2888 | "dependencies": { 2889 | "emoji-regex": "^8.0.0", 2890 | "is-fullwidth-code-point": "^3.0.0", 2891 | "strip-ansi": "^6.0.1" 2892 | }, 2893 | "engines": { 2894 | "node": ">=8" 2895 | } 2896 | }, 2897 | "node_modules/yargs/node_modules/strip-ansi": { 2898 | "version": "6.0.1", 2899 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2900 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2901 | "dev": true, 2902 | "license": "MIT", 2903 | "dependencies": { 2904 | "ansi-regex": "^5.0.1" 2905 | }, 2906 | "engines": { 2907 | "node": ">=8" 2908 | } 2909 | } 2910 | } 2911 | } 2912 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "type": "module", 4 | "scripts": { 5 | "build": "vite build", 6 | "dev": "vite" 7 | }, 8 | "devDependencies": { 9 | "autoprefixer": "^10.4.20", 10 | "axios": "^1.7.4", 11 | "concurrently": "^9.0.1", 12 | "laravel-vite-plugin": "^1.0", 13 | "postcss": "^8.4.47", 14 | "tailwindcss": "^3.4.13", 15 | "vite": "^5.0" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | tests/Unit 10 | 11 | 12 | tests/Feature 13 | 14 | 15 | 16 | 17 | app 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews -Indexes 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Handle Authorization Header 9 | RewriteCond %{HTTP:Authorization} . 10 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 11 | 12 | # Redirect Trailing Slashes If Not A Folder... 13 | RewriteCond %{REQUEST_FILENAME} !-d 14 | RewriteCond %{REQUEST_URI} (.+)/$ 15 | RewriteRule ^ %1 [L,R=301] 16 | 17 | # Send Requests To Front Controller... 18 | RewriteCond %{REQUEST_FILENAME} !-d 19 | RewriteCond %{REQUEST_FILENAME} !-f 20 | RewriteRule ^ index.php [L] 21 | 22 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/laravel-demo/0be5d9acff4cd31ada492b31134d064dc3f31e86/public/favicon.ico -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- 1 | handleRequest(Request::capture()); 18 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- 1 | import axios from 'axios'; 2 | window.axios = axios; 3 | 4 | window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; 5 | -------------------------------------------------------------------------------- /resources/views/about/index.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | @vite(['resources/css/app.css']) 7 | Document 8 | 9 | 10 |
11 |

About page

12 |

{{$name}}

13 |
14 | 15 | -------------------------------------------------------------------------------- /resources/views/components/layout.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Hitesh Code Lab 7 | @vite(['resources/css/app.css']) 8 | 9 | 10 | 11 |
12 | {{ $slot }} 13 |
14 | 15 | 16 | -------------------------------------------------------------------------------- /resources/views/teas/index.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Tea Variety 7 | 8 | 9 |

Teas

10 |
    11 | @foreach($teas as $tea) 12 |
  • 13 | {{$tea['name']}} 14 |
  • 15 | @endforeach 16 |
17 | 18 | -------------------------------------------------------------------------------- /resources/views/teas/teadetail.blade.php: -------------------------------------------------------------------------------- 1 | 2 |

Tea Details

3 |

{{$tea['name']}}

4 |

Price: {{$tea['price']}}

5 | Go back 6 |
7 | 8 | -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | @vite(['resources/css/app.css']) 6 | Get started with Laravel 7 | 8 | 9 |
10 | 11 | About US 12 |

Learn more about laravel with Hitesh Code lab

13 | 14 |
15 | 16 | 17 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 8 | })->purpose('Display an inspiring quote')->hourly(); 9 | -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- 1 | "Hitesh"]); 11 | }); 12 | 13 | Route::get('/teas', function () { 14 | $teas = [ 15 | ["name" => "Masala Chai", "price" => 100, "id" => 1], 16 | ["name" => "Earl Grey", "price" => 150, "id" => 2], 17 | ["name" => "Assam", "price" => 200, "id" => 3], 18 | ]; 19 | return view('teas.index', ['teas' => $teas]); 20 | }); 21 | 22 | Route::get('/teas/{id}', function ($id) { 23 | $teas = [ 24 | ["name" => "Masala Chai", "price" => 100, "id" => 1], 25 | ["name" => "Earl Grey", "price" => 150, "id" => 2], 26 | ["name" => "Assam", "price" => 200, "id" => 3], 27 | ]; 28 | return view('teas.teadetail', ['tea' => $teas[$id - 1]]); 29 | }); -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !private/ 3 | !public/ 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /storage/app/private/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | import defaultTheme from 'tailwindcss/defaultTheme'; 2 | 3 | /** @type {import('tailwindcss').Config} */ 4 | export default { 5 | content: [ 6 | './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php', 7 | './storage/framework/views/*.php', 8 | './resources/**/*.blade.php', 9 | './resources/**/*.js', 10 | './resources/**/*.vue', 11 | ], 12 | theme: { 13 | extend: { 14 | fontFamily: { 15 | sans: ['Figtree', ...defaultTheme.fontFamily.sans], 16 | }, 17 | }, 18 | }, 19 | plugins: [], 20 | }; 21 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 5 | 6 | $response->assertStatus(200); 7 | }); 8 | -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- 1 | extend(Tests\TestCase::class) 15 | // ->use(Illuminate\Foundation\Testing\RefreshDatabase::class) 16 | ->in('Feature'); 17 | 18 | /* 19 | |-------------------------------------------------------------------------- 20 | | Expectations 21 | |-------------------------------------------------------------------------- 22 | | 23 | | When you're writing tests, you often need to check that values meet certain conditions. The 24 | | "expect()" function gives you access to a set of "expectations" methods that you can use 25 | | to assert different things. Of course, you may extend the Expectation API at any time. 26 | | 27 | */ 28 | 29 | expect()->extend('toBeOne', function () { 30 | return $this->toBe(1); 31 | }); 32 | 33 | /* 34 | |-------------------------------------------------------------------------- 35 | | Functions 36 | |-------------------------------------------------------------------------- 37 | | 38 | | While Pest is very powerful out-of-the-box, you may have some testing code specific to your 39 | | project that you don't want to repeat in every file. Here you can also expose helpers as 40 | | global functions to help you to reduce the number of lines of code in your test files. 41 | | 42 | */ 43 | 44 | function something() 45 | { 46 | // .. 47 | } 48 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | toBeTrue(); 5 | }); 6 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import laravel from 'laravel-vite-plugin'; 3 | 4 | export default defineConfig({ 5 | plugins: [ 6 | laravel({ 7 | input: ['resources/css/app.css', 'resources/js/app.js'], 8 | refresh: true, 9 | }), 10 | ], 11 | }); 12 | --------------------------------------------------------------------------------