mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
37 lines
994 B
JSON
37 lines
994 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 && pnpm watch:css",
|
|
"dev": "concurrently \"pnpm dev:next\" \"pnpm watch:css\" \"pnpm copy:css\"",
|
|
"dev:next": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"email": "fake-smtp-server",
|
|
"start:email": "pnpm email"
|
|
},
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@next-auth/fauna-adapter": "^1",
|
|
"@next-auth/prisma-adapter": "^1",
|
|
"@prisma/client": "^3",
|
|
"faunadb": "^4",
|
|
"next": "12.1.7-canary.51",
|
|
"nodemailer": "^6",
|
|
"react": "^18",
|
|
"react-dom": "^18"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"concurrently": "^7",
|
|
"cpx": "^1.5.0",
|
|
"fake-smtp-server": "^0.8.0",
|
|
"prisma": "^3"
|
|
}
|
|
}
|