Update to latest nextjs 16.0.0

This commit is contained in:
2025-10-28 12:01:01 +01:00
parent bc5935701e
commit a404f9b2d3
4 changed files with 819 additions and 339 deletions

View File

@ -6,7 +6,7 @@
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "eslint ."
},
"dependencies": {
"@aws-sdk/client-s3": "^3.844.0",
@ -25,10 +25,10 @@
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.525.0",
"next": "15.3.5",
"next": "16.0.0",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-hook-form": "^7.60.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
@ -37,19 +37,22 @@
"zod": "^3.25.74"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"eslint": "^9",
"eslint-config-next": "15.3.5",
"eslint-config-next": "16.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"prisma": "^6.11.1",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.5",
"typescript": "^5"
},
"overrides": {
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2"
}
}