Updated nextjs version

This commit is contained in:
2025-09-03 13:36:36 +02:00
parent 5019b80c1f
commit a5cfbed065
10 changed files with 49 additions and 182 deletions

View File

@@ -4,9 +4,11 @@
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"build": "next build --turbopack",
"start": "next start",
"lint": "next lint",
"typegen": "next typegen",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"fmt": "dprint fmt src/**/*.ts src/**/*.tsx"
},
"dependencies": {
@@ -20,10 +22,10 @@
"clsx": "^2.1.1",
"lucide-react": "^0.528.0",
"motion": "^12.23.12",
"next": "15.4.4",
"next": "15.5.2",
"next-themes": "^0.4.6",
"react": "19.1.0",
"react-dom": "19.1.0",
"react": "19.1.1",
"react-dom": "19.1.1",
"react-icons": "^5.5.0",
"react-tooltip": "^5.29.1",
"sonner": "^2.0.6",
@@ -32,14 +34,14 @@
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@next/eslint-plugin-next": "^15.4.6",
"@next/eslint-plugin-next": "15.5.2",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react": "19.1.12",
"@types/react-dom": "19.1.9",
"dprint": "^0.50.1",
"eslint": "^9",
"eslint-config-next": "15.4.4",
"eslint-config-next": "15.5.2",
"eslint-plugin-react-hooks": "^5.2.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.6",
@@ -48,5 +50,9 @@
"trustedDependencies": [
"@tailwindcss/oxide",
"unrs-resolver"
]
],
"overrides": {
"@types/react": "19.1.12",
"@types/react-dom": "19.1.9"
}
}