Next.js Supabase V3 (#463)
Version 3 of the kit: - Radix UI replaced with Base UI (using the Shadcn UI patterns) - next-intl replaces react-i18next - enhanceAction deprecated; usage moved to next-safe-action - main layout now wrapped with [locale] path segment - Teams only mode - Layout updates - Zod v4 - Next.js 16.2 - Typescript 6 - All other dependencies updated - Removed deprecated Edge CSRF - Dynamic Github Action runner
This commit is contained in:
committed by
GitHub
parent
4912e402a3
commit
7ebff31475
48
package.json
48
package.json
@@ -1,15 +1,12 @@
|
||||
{
|
||||
"name": "next-supabase-saas-kit-turbo",
|
||||
"version": "2.24.1",
|
||||
"version": "3.0.0",
|
||||
"private": true,
|
||||
"sideEffects": false,
|
||||
"engines": {
|
||||
"node": ">=20.10.0"
|
||||
},
|
||||
"author": {
|
||||
"url": "https://makerkit.dev",
|
||||
"name": "MakerKit"
|
||||
"name": "MakerKit",
|
||||
"url": "https://makerkit.dev"
|
||||
},
|
||||
"sideEffects": false,
|
||||
"scripts": {
|
||||
"turbo": "turbo",
|
||||
"preinstall": "pnpm run --filter scripts requirements",
|
||||
@@ -18,10 +15,11 @@
|
||||
"clean": "git clean -xdf node_modules dist .next",
|
||||
"clean:workspaces": "turbo clean",
|
||||
"dev": "cross-env FORCE_COLOR=1 turbo dev --parallel",
|
||||
"format": "turbo format --cache-dir=.turbo --continue -- --cache --cache-location=\"node_modules/.cache/.prettiercache\" --ignore-path=\"../../.gitignore\"",
|
||||
"format:fix": "turbo format --cache-dir=.turbo --continue -- --write --cache --cache-location=\"node_modules/.cache/.prettiercache\" --ignore-path=\"../../.gitignore\"",
|
||||
"lint": "turbo lint --cache-dir=.turbo --affected --continue -- --cache --cache-location \"node_modules/.cache/.eslintcache\" && manypkg check",
|
||||
"lint:fix": "turbo lint --cache-dir=.turbo --affected --continue -- --fix --cache --cache-location \"node_modules/.cache/.eslintcache\" && manypkg fix",
|
||||
"format": "oxfmt --check",
|
||||
"format:fix": "oxfmt",
|
||||
"lint": "oxlint",
|
||||
"lint:fix": "oxlint --fix",
|
||||
"healthcheck": "oxlint --fix && oxfmt && pnpm run typecheck && manypkg fix",
|
||||
"typecheck": "turbo typecheck --affected --cache-dir=.turbo",
|
||||
"test": "turbo test --cache-dir=.turbo",
|
||||
"update": "pnpm update -r",
|
||||
@@ -36,19 +34,19 @@
|
||||
"env:generate": "turbo gen env",
|
||||
"env:validate": "turbo gen validate-env"
|
||||
},
|
||||
"prettier": "@kit/prettier-config",
|
||||
"packageManager": "pnpm@10.19.0",
|
||||
"pnpm": {
|
||||
"overrides": {
|
||||
"zod": "3.25.76"
|
||||
}
|
||||
},
|
||||
"devDependencies": {
|
||||
"@manypkg/cli": "^0.25.1",
|
||||
"@turbo/gen": "^2.8.11",
|
||||
"cross-env": "^10.0.0",
|
||||
"prettier": "^3.8.1",
|
||||
"turbo": "2.8.11",
|
||||
"typescript": "^5.9.3"
|
||||
}
|
||||
"@manypkg/cli": "catalog:",
|
||||
"@turbo/gen": "catalog:",
|
||||
"@types/node": "catalog:",
|
||||
"cross-env": "catalog:",
|
||||
"oxfmt": "catalog:",
|
||||
"oxlint": "catalog:",
|
||||
"server-only": "catalog:",
|
||||
"turbo": "catalog:",
|
||||
"typescript": "catalog:"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=20.10.0"
|
||||
},
|
||||
"packageManager": "pnpm@10.32.1"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user