-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "cuti",
"version": "1.0.0",
"private": true,
"description": "1. Clone this repository. 2. Install the dependencies. Run `composer install` command. 3. Create `.env` file by simply copying the `.env.example` file and rename it. 4. Configure the `.env` file with your **database connection**, **seeder configuration**, etc. 5. Generate the application key with `php artisan key:generate` command. 6. Generate the storage link with `php artisan storage:link` command. 7. Generate the database structure with this commands based on your preferences: - Use **`php artisan migrate`** for [creating / updating the database](https://laravel.com/docs/10.x/migrations). - Use **`php artisan db:seed`** for [seeding the database](https://laravel.com/docs/10.x/seeding#running-seeders). - Use `php artisan migrate:fresh` for fresh installation. - Use `php artisan migrate:fresh --seed` for fresh installation and seeding the database.",
"homepage": "https://github.com/AldoJh/cuti#readme",
"bugs": {
"url": "https://github.com/AldoJh/cuti/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AldoJh/cuti.git"
},
"license": "ISC",
"author": "",
"type": "module",
"main": "vite.config.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "vite build",
"dev": "vite"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"autoprefixer": "^10.4.21",
"axios": "^1.11.0",
"concurrently": "^9.0.1",
"laravel-vite-plugin": "^2.0.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.13",
"vite": "^7.0.4"
},
"$schema": "https://json.schemastore.org/package.json"
}