Next.js 16, React 19.2, Identities page, Invitations identities step, PNPM Catalogs (#381)

* Upgraded to Next.js 16
* Refactored code to comply with React 19.2 ESLint rules
* Refactored some useEffect usages with the new useEffectEvent
* Added Identities page and added second step to set up an identity after accepting an invitation
* Updated all dependencies
* Introduced PNPM catalogs for some frequently updated dependencies
* Bugs fixing and improvements
This commit is contained in:
Giancarlo Buomprisco
2025-10-22 11:47:47 +09:00
committed by GitHub
parent ea0c1dde80
commit 2c0d0bf7a1
98 changed files with 4812 additions and 4394 deletions

View File

@@ -7,12 +7,12 @@
"scripts": {
"analyze": "ANALYZE=true pnpm run build",
"build": "next build",
"build:test": "NODE_ENV=test next build --turbopack",
"build:test": "NODE_ENV=test next build",
"clean": "git clean -xdf .next .turbo node_modules",
"dev": "next dev --turbo | pino-pretty -c",
"dev": "next dev | pino-pretty -c",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check \"**/*.{js,cjs,mjs,ts,tsx,md,json}\"",
"format": "prettier --check \"**/*.{ts,tsx}\" --ignore-path=\"../../.prettierignore\"",
"start": "next start",
"start:test": "NODE_ENV=test next start",
"typecheck": "tsc --noEmit",
@@ -54,20 +54,20 @@
"@makerkit/data-loader-supabase-core": "^0.0.10",
"@makerkit/data-loader-supabase-nextjs": "^1.2.5",
"@marsidev/react-turnstile": "^1.3.1",
"@nosecone/next": "1.0.0-beta.12",
"@nosecone/next": "1.0.0-beta.13",
"@radix-ui/react-icons": "^1.3.2",
"@supabase/supabase-js": "2.58.0",
"@tanstack/react-query": "5.90.2",
"@supabase/supabase-js": "2.76.1",
"@tanstack/react-query": "5.90.5",
"@tanstack/react-table": "^8.21.3",
"date-fns": "^4.1.0",
"lucide-react": "^0.544.0",
"next": "15.5.5",
"lucide-react": "^0.546.0",
"next": "16.0.0",
"next-sitemap": "^4.2.3",
"next-themes": "0.4.6",
"react": "19.1.1",
"react-dom": "19.1.1",
"react-hook-form": "^7.63.0",
"react-i18next": "^16.0.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-hook-form": "^7.65.0",
"react-i18next": "^16.1.4",
"recharts": "2.15.3",
"tailwind-merge": "^3.3.1",
"zod": "^3.25.74"
@@ -76,17 +76,17 @@
"@kit/eslint-config": "workspace:*",
"@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@next/bundle-analyzer": "15.5.5",
"@tailwindcss/postcss": "^4.1.14",
"@types/node": "^24.6.2",
"@types/react": "19.1.16",
"@types/react-dom": "19.1.9",
"babel-plugin-react-compiler": "19.1.0-rc.3",
"@next/bundle-analyzer": "16.0.0",
"@tailwindcss/postcss": "^4.1.15",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "19.2.2",
"babel-plugin-react-compiler": "1.0.0",
"cssnano": "^7.1.1",
"pino-pretty": "13.0.0",
"pino-pretty": "13.1.2",
"prettier": "^3.6.2",
"supabase": "2.48.3",
"tailwindcss": "4.1.14",
"supabase": "2.53.6",
"tailwindcss": "4.1.15",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3"
},