mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
Next.js 13.4 [is out](https://nextjs.org/blog/next-13-4). For discussing project-related issues, please use https://github.com/nextauthjs/next-auth/discussions/8487 The new version of NextAuth.js is based on `@auth/core`. If you want to test it out, you can do so already, installing `next-auth@experimental`: - **Documentation**: https://authjs.dev/reference/nextjs - **Migration guide**: https://authjs.dev/guides/upgrade-to-v5 BREAKING CHANGE: Follow the [migration guide](https://authjs.dev/guides/upgrade-to-v5)
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"name": "next-auth-app",
|
|
"version": "1.0.0",
|
|
"description": "Next.js + Auth.js Developer app",
|
|
"private": true,
|
|
"scripts": {
|
|
"clean": "rm -rf .next",
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"email": "fake-smtp-server",
|
|
"start:email": "pnpm email",
|
|
"e2e": "pnpm dlx playwright test"
|
|
},
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@auth/core": "workspace:*",
|
|
"@auth/edgedb-adapter": "workspace:*",
|
|
"@auth/fauna-adapter": "workspace:*",
|
|
"@auth/prisma-adapter": "workspace:*",
|
|
"@auth/supabase-adapter": "workspace:*",
|
|
"@auth/typeorm-adapter": "workspace:*",
|
|
"@prisma/client": "^5",
|
|
"edgedb": "^1.0.1",
|
|
"@supabase/supabase-js": "^2.0.5",
|
|
"faunadb": "^4",
|
|
"next": "13.5.7-canary.17",
|
|
"next-auth": "workspace:*",
|
|
"nodemailer": "^6.9.3",
|
|
"react": "^18",
|
|
"react-dom": "^18"
|
|
},
|
|
"devDependencies": {
|
|
"@edgedb/generate": "^0.0.4",
|
|
"@playwright/test": "1.29.2",
|
|
"@types/jsonwebtoken": "^8.5.5",
|
|
"@types/react": "^18.2.23",
|
|
"@types/react-dom": "^18.2.8",
|
|
"dotenv": "^16.0.3",
|
|
"fake-smtp-server": "^0.8.0",
|
|
"pg": "^8.7.3",
|
|
"prisma": "^5",
|
|
"sqlite3": "^5.0.8",
|
|
"typeorm": "0.3.17"
|
|
}
|
|
}
|