mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
* Hotifx for release 1.8.3 which was a broken release (!) * This release includes a downgrade from webpack 4.7 to webpack 3.11 (the latest release of 3.x) * Example upgraded to latest versions of Next.js 6.0 and React/React DOM 16.3 The downgrade of webpack is due to breaking changes in webpack. Webpack 4.7 builds do not work as universal builds (that can run in web, webworker and node.js). There is no fix or apparent workaround for this in webpack presently, but a fix has been suggested in an issue linked to in this thread: https://github.com/webpack/webpack/issues/6525
36 lines
917 B
JSON
36 lines
917 B
JSON
{
|
|
"name": "next-auth-examples",
|
|
"version": "1.8.5",
|
|
"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.0.0",
|
|
"next-auth": "^1.8.5",
|
|
"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"
|
|
}
|
|
}
|