mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
Now sends mail directly from localhost if no mail server configured. This is not recommended for production but can be useful for testing.
36 lines
917 B
JSON
36 lines
917 B
JSON
{
|
|
"name": "next-auth-examples",
|
|
"version": "1.1.2",
|
|
"description": "An example project for next-auth",
|
|
"repository": "https://github.com/iaincollins/next-auth.git",
|
|
"main": "",
|
|
"scripts": {
|
|
"dev": "NODE_ENV=development node index.js",
|
|
"build": "next build",
|
|
"start": "node index.js"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"connect-mongo": "^2.0.1",
|
|
"dotenv": "^4.0.0",
|
|
"mongodb": "^3.0.1",
|
|
"nedb": "^1.8.0",
|
|
"next": "^4.2.3",
|
|
"next-auth": "^1.1.1",
|
|
"next-auth-client": "^1.1.1",
|
|
"nodemailer": "^4.4.2",
|
|
"nodemailer-direct-transport": "^3.3.2",
|
|
"nodemailer-smtp-transport": "^2.7.4",
|
|
"passport-facebook": "^2.1.1",
|
|
"passport-google-oauth": "^1.0.0",
|
|
"passport-twitter": "^1.0.4",
|
|
"react": "^16.2.0",
|
|
"react-dom": "^16.2.0"
|
|
},
|
|
"now": {
|
|
"name": "next-auth-demo",
|
|
"alias": "next-auth-demo.now.sh"
|
|
}
|
|
}
|