diff --git a/apps/web/package.json b/apps/web/package.json index bcd11b0..f472cca 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -4,7 +4,7 @@ "private": true, "license": "AGPL-3.0", "scripts": { - "dev": "next dev --turbopack --port=3001", + "dev": "next dev --port=3001", "build": "next build", "start": "next start" }, @@ -46,12 +46,12 @@ "embla-carousel-react": "^8.6.0", "input-otp": "^1.4.2", "lucide-react": "^0.542.0", - "next": "15.5.0", + "next": "16.3.1", "next-themes": "^0.4.6", "radix-ui": "^1.4.2", - "react": "^19.0.0", + "react": "19.2.8", "react-day-picker": "^9.9.0", - "react-dom": "^19.0.0", + "react-dom": "19.2.8", "react-hook-form": "^7.62.0", "react-resizable-panels": "^3.0.5", "recharts": "2.15.4", @@ -64,14 +64,14 @@ "devDependencies": { "@tailwindcss/postcss": "^4.1.10", "@tanstack/react-query-devtools": "^5.85.5", + "@types/jsdom": "^21.1.7", "@types/node": "^24.3.1", - "@types/react": "^19", - "@types/react-dom": "^19", + "@types/react": "19.2.18", + "@types/react-dom": "19.2.4", + "jsdom": "^24.1.0", "tailwindcss": "^4.1.10", "typescript": "^5", - "vitest": "^3.2.4", - "jsdom": "^24.1.0", - "@types/jsdom": "^21.1.7", - "vite": "^5.4.10" + "vite": "^5.4.10", + "vitest": "^3.2.4" } } diff --git a/apps/web/tsconfig.json b/apps/web/tsconfig.json index 2390d84..0d929e4 100644 --- a/apps/web/tsconfig.json +++ b/apps/web/tsconfig.json @@ -1,11 +1,7 @@ { "compilerOptions": { "target": "ES2017", - "lib": [ - "dom", - "dom.iterable", - "esnext" - ], + "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, "strict": true, @@ -16,7 +12,7 @@ "resolveJsonModule": true, "isolatedModules": true, "verbatimModuleSyntax": true, - "jsx": "preserve", + "jsx": "react-jsx", "incremental": true, "plugins": [ { @@ -24,9 +20,7 @@ } ], "paths": { - "@/*": [ - "./src/*" - ] + "@/*": ["./src/*"] } }, "include": [ @@ -34,9 +28,8 @@ "./**/*.tsx", "./.next/types/**/*.ts", "./next-env.d.ts", - ".next/types/**/*.ts" + ".next/types/**/*.ts", + ".next/dev/types/**/*.ts" ], - "exclude": [ - "./node_modules" - ] + "exclude": ["./node_modules"] } diff --git a/bun.lockb b/bun.lockb index 09a2ff6..0d4cd45 100755 Binary files a/bun.lockb and b/bun.lockb differ