mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
35 lines
918 B
JSON
35 lines
918 B
JSON
{
|
|
"name": "next-auth-app",
|
|
"version": "1.0.0",
|
|
"description": "NextAuth.js Developer app",
|
|
"private": true,
|
|
"scripts": {
|
|
"clean": "rm -rf .next",
|
|
"dev": "npm-run-all --parallel dev:next watch:css copy:css ",
|
|
"dev:next": "next dev",
|
|
"build": "next build",
|
|
"copy:css": "cpx \"../css/**/*\" src/css --watch",
|
|
"watch:css": "cd .. && npm run watch:css",
|
|
"start": "next start",
|
|
"email": "npx fake-smtp-server",
|
|
"start:email": "email"
|
|
},
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@next-auth/fauna-adapter": "0.2.2-next.4",
|
|
"@next-auth/prisma-adapter": "0.5.2-next.5",
|
|
"@prisma/client": "^2.29.1",
|
|
"fake-smtp-server": "^0.8.0",
|
|
"faunadb": "^4.3.0",
|
|
"next": "^11.1.0",
|
|
"nodemailer": "^6.6.3",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"cpx": "^1.5.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"prisma": "^2.29.1"
|
|
}
|
|
}
|