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.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"private": true,
|
|
"description": "An example project for NextAuth.js with Next.js",
|
|
"repository": "https://github.com/nextauthjs/next-auth-example.git",
|
|
"bugs": {
|
|
"url": "https://github.com/nextauthjs/next-auth/issues"
|
|
},
|
|
"homepage": "https://next-auth-example.vercel.app",
|
|
"scripts": {
|
|
"dev": "next",
|
|
"build": "next build",
|
|
"start": "next start"
|
|
},
|
|
"author": "Iain Collins <me@iaincollins.com>",
|
|
"contributors": [
|
|
"Balázs Orbán <info@balazsorban.com>",
|
|
"Nico Domino <yo@ndo.dev>",
|
|
"Lluis Agusti <hi@llu.lu>",
|
|
"Thang Huu Vu <hi@thvu.dev>"
|
|
],
|
|
"dependencies": {
|
|
"@radix-ui/react-avatar": "^1.0.3",
|
|
"@radix-ui/react-collapsible": "^1.0.3",
|
|
"@radix-ui/react-dropdown-menu": "^2.0.5",
|
|
"@radix-ui/react-navigation-menu": "^1.1.3",
|
|
"@radix-ui/react-slot": "^1.0.2",
|
|
"class-variance-authority": "^0.7.0",
|
|
"clsx": "^2.0.0",
|
|
"lucide-react": "^0.274.0",
|
|
"next": "latest",
|
|
"next-auth": "experimental",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"tailwind-merge": "^1.14.0",
|
|
"tailwindcss-animate": "^1.0.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18",
|
|
"@types/react": "^18.2.23",
|
|
"@types/react-dom": "^18.2.8",
|
|
"autoprefixer": "^10.4.15",
|
|
"postcss": "^8.4.29",
|
|
"tailwindcss": "^3.3.3",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|