update react router deps and fix next backend tsconfig error

This commit is contained in:
Aman Varshney
2025-05-30 21:28:11 +05:30
parent ba754e868e
commit 27e44110b9
5 changed files with 69 additions and 64 deletions

View File

@@ -27,8 +27,8 @@ export const DEFAULT_CONFIG: ProjectConfig = {
};
export const dependencyVersionMap = {
"better-auth": "^1.2.7",
"@better-auth/expo": "^1.2.7",
"better-auth": "^1.2.8",
"@better-auth/expo": "^1.2.8",
"drizzle-orm": "^0.38.4",
"drizzle-kit": "^0.30.5",

View File

@@ -12,15 +12,15 @@
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
{{#unless (or (eq backend "convex") (eq backend "none"))}}
"composite": true,
{{/unless}}
"incremental": true,
"plugins": [
{
"name": "next"
}
],
{#unless (or (eq backend "convex") (eq backend "none"))}}
"composite": true,
{{/unless}}
"paths": {
"@/*": ["./src/*"]
}

View File

@@ -9,37 +9,37 @@
"typecheck": "react-router typegen && tsc"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@react-router/fs-routes": "^7.4.1",
"@react-router/node": "^7.4.1",
"@react-router/serve": "^7.4.1",
"@tanstack/react-form": "^1.2.3",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@react-router/fs-routes": "^7.6.1",
"@react-router/node": "^7.6.1",
"@react-router/serve": "^7.6.1",
"@tanstack/react-form": "^1.12.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"isbot": "^5.1.17",
"lucide-react": "^0.487.0",
"isbot": "^5.1.28",
"lucide-react": "^0.511.0",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.4.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router": "^7.6.1",
"sonner": "^2.0.3",
"tailwind-merge": "^3.1.0",
"tw-animate-css": "^1.2.5",
"zod": "^3.25.16"
"tailwind-merge": "^3.3.0",
"tw-animate-css": "^1.3.2",
"zod": "^3.25.42"
},
"devDependencies": {
"@react-router/dev": "^7.4.1",
"@tailwindcss/vite": "^4.0.0",
"@react-router/dev": "^7.6.1",
"@tailwindcss/vite": "^4.1.8",
"@types/node": "^20",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"react-router-devtools": "^1.1.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"tailwindcss": "^4.1.8",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-tsconfig-paths": "^5.1.4"
}
}