mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
* Added Babel Pollyfill to the next-auth client and rollup config. * Client longer relies on ES6 features and so works in Internet Explorer (support for which had been dropped was was conflicting with newerver version of webpack when building isomorphic libraries). * Example client now has slightly better example of how to handle the callback screen for browsers that don’t have JavaScript enabled.
36 lines
918 B
JSON
36 lines
918 B
JSON
{
|
|
"name": "next-auth-examples",
|
|
"version": "1.11.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.1",
|
|
"express-session": "^1.15.6",
|
|
"mongodb": "^3.0.7",
|
|
"nedb": "^1.8.0",
|
|
"next": "^6.1.1",
|
|
"next-auth": "^1.9.0",
|
|
"nodemailer": "^4.6.4",
|
|
"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.3.2",
|
|
"react-dom": "^16.3.2"
|
|
},
|
|
"now": {
|
|
"name": "next-auth-demo",
|
|
"alias": "next-auth-demo.now.sh"
|
|
}
|
|
}
|