Skip to content

Commit

Permalink
⬆️ Improvement: upgrade to Next 15
Browse files Browse the repository at this point in the history
  • Loading branch information
RSelwa committed Dec 18, 2024
1 parent 117ab3c commit 2889c65
Show file tree
Hide file tree
Showing 7 changed files with 5,510 additions and 13 deletions.
6 changes: 5 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
{
"extends": ["next/core-web-vitals", "next/typescript"]
"extends": ["next/core-web-vitals", "next/typescript"],
"rules": {
"no-console": "warn",
"no-unused-vars": "warn"
}
}
Binary file removed app/fonts/GeistMonoVF.woff
Binary file not shown.
Binary file removed app/fonts/GeistVF.woff
Binary file not shown.
Binary file removed bun.lockb
Binary file not shown.
20 changes: 13 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
Expand All @@ -15,21 +15,21 @@
},
"dependencies": {
"classnames": "^2.5.1",
"next": "14.2.16",
"react": "^18",
"react-dom": "^18",
"next": "15.1.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"tailwind-merge": "^2.5.4"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@playwright/test": "^1.48.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@vitest/coverage-istanbul": "^2.1.4",
"@vitest/ui": "^2.1.4",
"eslint": "^8",
"eslint-config-next": "14.2.16",
"eslint-config-next": "15.1.1",
"husky": "^9.1.6",
"postcss": "^8",
"prettier": "^3.3.3",
Expand All @@ -38,5 +38,11 @@
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vitest": "^2.1.4"
},
"pnpm": {
"overrides": {
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2"
}
}
}
Loading

0 comments on commit 2889c65

Please sign in to comment.