Files
archived-next-auth/example/package.json
Iain Collins e98976af04 Changes to response API, fixes issues in 1.6
* Fixes bug in v1.6.0 with the return reponse (for those extending NextAuth), it was returning an empty response after refactoring.
* The instance of Express is now returned in ‘expressApp’, the value ‘express’ now contains Express library being referenced (making it easier to use it for things like creating static routes).
* Removed depdancy for cookie parser (resolves #15).
2018-02-07 16:57:16 +00:00

36 lines
917 B
JSON

{
"name": "next-auth-examples",
"version": "1.7.0",
"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": "^5.0.0",
"express-session": "^1.15.6",
"mongodb": "^3.0.1",
"nedb": "^1.8.0",
"next": "^5.0.0",
"next-auth": "^1.7.0",
"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"
}
}