sveltekit-auth-example 1.0.10 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -31,8 +31,8 @@ The forgot password functionality uses SendInBlue to send the email. You would n
|
|
|
31
31
|
|
|
32
32
|
## Prerequisites
|
|
33
33
|
- PostgreSQL 14 or higher
|
|
34
|
-
- Node.js
|
|
35
|
-
- npm 8.
|
|
34
|
+
- Node.js 18.7.0 or higher
|
|
35
|
+
- npm 8.15.0 or higher
|
|
36
36
|
- Google API client
|
|
37
37
|
- SendInBlue account (only used for emailing password reset link - the sample can run without it but forgot password will not work)
|
|
38
38
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sveltekit-auth-example",
|
|
3
3
|
"description": "SvelteKit Authentication Example",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.11",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Nate Stuyvesant",
|
|
7
7
|
"license": "https://github.com/nstuyvesant/sveltekit-auth-example/blob/master/LICENSE",
|
|
@@ -42,8 +42,7 @@
|
|
|
42
42
|
"dotenv": "^16.0.1",
|
|
43
43
|
"google-auth-library": "^8.1.1",
|
|
44
44
|
"jsonwebtoken": "^8.5.1",
|
|
45
|
-
"pg": "^8.7.3"
|
|
46
|
-
"pg-native": "^3.0.0"
|
|
45
|
+
"pg": "^8.7.3"
|
|
47
46
|
},
|
|
48
47
|
"devDependencies": {
|
|
49
48
|
"@sveltejs/adapter-node": "latest",
|