Files
archived-next-auth/example/package.json
Iain Collins 2f7b68f352 Release 1.9.0 - Migrated rollup from webpack
* Migrated to rollup from webpack, as webpack no longer generates working isomorphic code in latest versions.

* The webpack generated client was also causing an error in Internet Explorer 11 (Microsoft Edge was and still is working fine).

* There are _still_ breaking issues in Internet Explorer 11 with the example project (cause TBD), but it no longer crashes the app, so fallback of server side rendering still works.
2018-07-17 17:54:32 -04:00

36 lines
917 B
JSON

{
"name": "next-auth-examples",
"version": "1.9.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"
}
}