Updated to nextjs v16

This commit is contained in:
2025-10-29 18:21:09 +01:00
parent b713008819
commit aac3fcd3b9
13 changed files with 600 additions and 484 deletions

View File

@@ -3,8 +3,8 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"dev": "next dev",
"build": "next build",
"start": "next start",
"typegen": "next typegen",
"typecheck": "tsc --noEmit",
@@ -21,47 +21,49 @@
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@t3-oss/env-nextjs": "^0.13.8",
"@tanstack/react-query": "^5.90.2",
"@tanstack/react-query": "^5.90.5",
"babel-plugin-react-compiler": "^19.1.0-rc.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"geist": "^1.4.2",
"geist": "^1.5.1",
"js-cookie": "^3.0.5",
"lucide-react": "^0.528.0",
"motion": "^12.23.12",
"next": "15.5.2",
"lucide-react": "^0.548.0",
"motion": "^12.23.24",
"next": "16.0.1",
"next-themes": "^0.4.6",
"react": "19.1.1",
"react-dom": "19.1.1",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-icons": "^5.5.0",
"react-tooltip": "^5.29.1",
"sonner": "^2.0.6",
"react-tooltip": "^5.30.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"zod": "^4.0.10"
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@next/eslint-plugin-next": "15.5.2",
"@next/eslint-plugin-next": "16.0.1",
"@tailwindcss/postcss": "^4",
"@tanstack/react-query-devtools": "^5.90.2",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/react": "19.1.12",
"@types/react-dom": "19.1.9",
"dprint": "^0.50.1",
"@types/node": "^24",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"dprint": "^0.50.2",
"eslint": "^9",
"eslint-config-next": "15.5.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-config-next": "16.0.1",
"eslint-plugin-react-hooks": "^7.0.1",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.6",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
},
"trustedDependencies": [
"@tailwindcss/oxide",
"dprint",
"sharp",
"unrs-resolver"
],
"overrides": {
"@types/react": "19.1.12",
"@types/react-dom": "19.1.9"
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2"
}
}