mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
* chore(deps): upgrade Prisma * fix: ignore `id` when not needed * test: ensure MongoDB/Prisma integration * test: remove table mappers * docs(adapters): mention MongoDB in the Prisma adapter * docs: plural * fix: `@ts-ignore` * docs: typo, consistency
34 lines
982 B
JSON
34 lines
982 B
JSON
{
|
|
"name": "next-auth-app",
|
|
"version": "1.0.0",
|
|
"description": "NextAuth.js Developer app",
|
|
"private": true,
|
|
"scripts": {
|
|
"clean": "rm -rf .next",
|
|
"copy:css": "cpx \"../../packages/next-auth/css/**/*\" src/css --watch",
|
|
"watch:css": "cd ../../packages/next-auth && npm run watch:css",
|
|
"dev": "npm-run-all --parallel dev:next watch:css copy:css",
|
|
"dev:next": "npx next dev",
|
|
"build": "npx next build",
|
|
"start": "next start",
|
|
"email": "npx fake-smtp-server",
|
|
"start:email": "npm run email"
|
|
},
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@next-auth/fauna-adapter": "^1.0.1",
|
|
"@next-auth/prisma-adapter": "^1.0.1",
|
|
"@prisma/client": "^3.10.0",
|
|
"fake-smtp-server": "^0.8.0",
|
|
"faunadb": "^4.4.1",
|
|
"next": "^12.1.0",
|
|
"nodemailer": "^6.7.2",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^17.0.37",
|
|
"@types/react-dom": "^17.0.11",
|
|
"prisma": "^3.10.0"
|
|
}
|
|
} |