mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
Database adapters are not dependent on Next.js features, so it makes sense to republish them under the `@auth/*` scope. This PR is part of a series to convert adapters, using `@auth/core` for types. If you are coming from the previous adapter, change your `package.json`: ```diff - "@next-auth/supabase-adapter": "0.0.0", + "@auth/supabase-adapter": "0.0.0", ``` And run `npm install`, `yarn install` or `pnpm install` respectively. **Note:** This packages is published as ESM-only
41 lines
1018 B
JSON
41 lines
1018 B
JSON
{
|
|
"name": "next-auth-app-v4",
|
|
"version": "1.0.0",
|
|
"description": "NextAuth.js Developer app",
|
|
"private": true,
|
|
"scripts": {
|
|
"clean": "rm -rf .next",
|
|
"dev": "next dev",
|
|
"lint": "next lint",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"email": "fake-smtp-server",
|
|
"start:email": "pnpm email"
|
|
},
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@auth/fauna-adapter": "workspace:*",
|
|
"@auth/prisma-adapter": "workspace:*",
|
|
"@auth/supabase-adapter": "workspace:*",
|
|
"@auth/typeorm-adapter": "workspace:*",
|
|
"@prisma/client": "^3",
|
|
"@supabase/supabase-js": "^2.0.5",
|
|
"faunadb": "^4",
|
|
"next": "13.3.0",
|
|
"next-auth": "workspace:*",
|
|
"nodemailer": "^6",
|
|
"react": "^18",
|
|
"react-dom": "^18"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jsonwebtoken": "^8.5.5",
|
|
"@types/react": "^18.0.37",
|
|
"@types/react-dom": "^18.0.6",
|
|
"fake-smtp-server": "^0.8.0",
|
|
"pg": "^8.7.3",
|
|
"prisma": "^3",
|
|
"sqlite3": "^5.0.8",
|
|
"typeorm": "0.3.7"
|
|
}
|
|
}
|