- Install Laravel 12 with Breeze (Vue stack + Inertia.js) - Configure Pest testing framework (5 tests passing) - Add Docker multi-stage build (PHP 8.3 + LibreOffice + ImageMagick) - Create docker-compose.yml with app + node services - Configure Vite for Docker hot-reload - Set app locale to 'de' (German) - Add Vue packages: @vueuse/core, vue-draggable-plus, vue3-dropzone - Update .env.example with all project vars - Relocate spike files: src/Cts/ → app/Cts/ (Laravel autoload) - Tests: 5 passed (14 assertions) - Vite build: successful - Docker: app container running Task: T1 - Laravel Scaffolding + Breeze Vue + Docker
27 lines
745 B
JSON
27 lines
745 B
JSON
{
|
|
"$schema": "https://www.schemastore.org/package.json",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"dev": "vite"
|
|
},
|
|
"devDependencies": {
|
|
"@inertiajs/vue3": "^2.0.0",
|
|
"@tailwindcss/forms": "^0.5.3",
|
|
"@tailwindcss/vite": "^4.0.0",
|
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
"autoprefixer": "^10.4.12",
|
|
"axios": "^1.11.0",
|
|
"concurrently": "^9.0.1",
|
|
"laravel-vite-plugin": "^2.0.0",
|
|
"postcss": "^8.4.31",
|
|
"tailwindcss": "^4.2.1",
|
|
"vite": "^7.0.0",
|
|
"vue": "^3.4.0",
|
|
"@vueuse/core": "^12.0.0",
|
|
"vue-draggable-plus": "^0.6.0",
|
|
"@jaxtheprime/vue3-dropzone": "^1.1.0"
|
|
}
|
|
}
|