Skip to content

Commit 7b3d09d

Browse files
chore: upgrade to next 15
1 parent 707e67b commit 7b3d09d

File tree

5 files changed

+1046
-3700
lines changed

5 files changed

+1046
-3700
lines changed

.eslintrc.json

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
{
2-
"extends": [
3-
"sznm/react",
4-
"plugin:react/jsx-runtime",
5-
"plugin:@next/next/recommended"
6-
]
2+
"extends": ["next/core-web-vitals", "next/typescript"]
73
}

next.config.js

-14
This file was deleted.

next.config.ts

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { NextConfig } from 'next';
2+
3+
const nextConfig: NextConfig = {
4+
reactStrictMode: true,
5+
eslint: {
6+
dirs: ['src'],
7+
},
8+
};
9+
10+
export default nextConfig;

package.json

+12-14
Original file line numberDiff line numberDiff line change
@@ -24,39 +24,37 @@
2424
},
2525
"dependencies": {
2626
"clsx": "^2.1.1",
27-
"lucide-react": "^0.441.0",
28-
"next": "^14.2.11",
29-
"next-pwa": "^5.6.0",
27+
"lucide-react": "^0.454.0",
28+
"next": "^15.0.2",
3029
"next-seo": "^6.6.0",
3130
"next-themes": "^0.3.0",
3231
"react": "18.3.1",
3332
"react-dom": "18.3.1",
34-
"tailwind-merge": "^2.5.2"
33+
"tailwind-merge": "^2.5.4"
3534
},
3635
"devDependencies": {
3736
"@commitlint/cli": "^19.5.0",
3837
"@commitlint/config-conventional": "^19.5.0",
3938
"@commitlint/cz-commitlint": "^19.5.0",
4039
"@commitlint/types": "^19.5.0",
4140
"@tailwindcss/typography": "^0.5.15",
42-
"@types/node": "^22.5.5",
43-
"@types/react": "18.3.7",
41+
"@types/node": "^22.8.4",
42+
"@types/react": "18.3.12",
4443
"autoprefixer": "^10.4.20",
45-
"commit-and-tag-version": "^12.4.4",
46-
"commitizen": "^4.3.0",
44+
"commit-and-tag-version": "^12.5.0",
45+
"commitizen": "^4.3.1",
4746
"cross-env": "^7.0.3",
4847
"eslint": "^8.57.0",
49-
"eslint-config-next": "^14.2.11",
50-
"eslint-config-sznm": "^2.0.3",
48+
"eslint-config-next": "^15.0.2",
5149
"husky": "^9.1.6",
52-
"knip": "^5.30.2",
50+
"knip": "^5.34.4",
5351
"lint-staged": "^15.2.10",
5452
"next-sitemap": "^4.2.3",
5553
"postcss": "^8.4.47",
5654
"prettier": "3.3.3",
57-
"prettier-plugin-tailwindcss": "^0.6.6",
58-
"tailwindcss": "^3.4.12",
59-
"typescript": "5.6.2"
55+
"prettier-plugin-tailwindcss": "^0.6.8",
56+
"tailwindcss": "^3.4.14",
57+
"typescript": "5.6.3"
6058
},
6159
"engines": {
6260
"node": ">=20.14.x",

0 commit comments

Comments
 (0)