update nextjs 15

This commit is contained in:
Felix Schulze 2025-03-04 19:23:38 +01:00
parent 8306718a7a
commit 5274b2e1c2
3 changed files with 1135 additions and 732 deletions

1842
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -3,7 +3,7 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint"
@ -11,22 +11,22 @@
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-slot": "^1.1.2",
"autoprefixer": "^10.4.19",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cssnano": "^7.0.1",
"date-fns": "^3.6.0",
"lucide-react": "^0.452.0",
"next": "14.2.15",
"next": "15.2.1",
"next-plausible": "^3.12.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^10.0.0",
"react": "^18",
"react": "19.0.0",
"react-day-picker": "^8.10.1",
"react-dom": "^18",
"react-dom": "19.0.0",
"react-hook-form": "^7.53.0",
"sharp": "^0.33.4",
"tailwind-merge": "^2.5.2",
@ -35,13 +35,17 @@
},
"devDependencies": {
"@types/node": "20.16.11",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"eslint": "8.57.1",
"eslint-config-next": "14.2.15",
"eslint-config-next": "15.2.1",
"postcss": "8.4.47",
"tailwindcss": "3.4.13",
"turbo": "2.1.3",
"typescript": "5.6.3"
},
"overrides": {
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4"
}
}

View File

@ -19,7 +19,8 @@
],
"paths": {
"@/*": ["./*"]
}
},
"target": "ES2023"
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]