-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 837 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 837 Bytes
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
{
"$schema": "https://www.schemastore.org/package.json",
"private": true,
"type": "module",
"scripts": {
"build": "vite build && vite build --ssr",
"dev": "vite",
"migrate": "php artisan migrate",
"gen:model": "php artisan make:model -mcr",
"gen:migration": "php artisan make:migration",
"unsafe:seed": "php artisan migrate:fresh --seed",
"gen:types": "php artisan typescript:transform"
},
"devDependencies": {
"axios": "^1.11.0",
"concurrently": "^9.0.1",
"laravel-vite-plugin": "^2.0.0",
"sass-embedded": "^1.97.1",
"vite": "^7.0.7"
},
"dependencies": {
"@inertiajs/vue3": "^2.3.4",
"@vitejs/plugin-vue": "^6.0.3",
"@vue/server-renderer": "^3.5.26",
"vue": "^3.5.26"
}
}