Añadido Dockerfil docker-compose.yml

This commit is contained in:
2026-05-30 21:47:44 -05:00
parent 40986b0359
commit 5a563b214f
101 changed files with 10207 additions and 950 deletions
Regular → Executable
+21 -9
View File
@@ -6,7 +6,13 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:all": "vitest run && playwright test"
},
"dependencies": {
"@base-ui/react": "^1.4.0",
@@ -16,38 +22,44 @@
"@fullcalendar/resource-timegrid": "^6.1.20",
"@fullcalendar/timegrid": "^6.1.20",
"@hookform/resolvers": "^5.2.2",
"@playwright/test": "^1.59.1",
"@supabase/ssr": "^0.10.2",
"@supabase/supabase-js": "^2.103.2",
"@vitest/coverage-v8": "^4.1.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"fullcalendar": "^6.1.20",
"lucide-react": "^1.8.0",
"next": "16.2.3",
"next": "^15.0.0",
"next-themes": "^0.4.6",
"playwright": "^1.59.1",
"react": "19.2.4",
"react-day-picker": "^9.14.0",
"react-dom": "19.2.4",
"react-hook-form": "^7.72.1",
"shadcn": "^4.2.0",
"server-only": "^0.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"vitest": "^4.1.4",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^9",
"eslint-config-next": "16.2.3",
"eslint-config-next": "15.0.0",
"jsdom": "^29.1.1",
"playwright": "^1.59.1",
"shadcn": "^4.2.0",
"tailwindcss": "^4",
"typescript": "^5"
"typescript": "^5",
"vitest": "^4.1.4"
}
}