sveltekit-auth-example 1.0.27 → 1.0.28
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/CHANGELOG.md +3 -0
- package/README.md +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ The forgot password / password reset functionality uses a JWT and [**SendInBlue*
|
|
|
31
31
|
|
|
32
32
|
## Prerequisites
|
|
33
33
|
- PostgreSQL 14.5 or higher
|
|
34
|
-
- Node.js 18.
|
|
34
|
+
- Node.js 18.11.0 or higher
|
|
35
35
|
- npm 8.19.2 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)
|
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.28",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Nate Stuyvesant",
|
|
7
7
|
"license": "https://github.com/nstuyvesant/sveltekit-auth-example/blob/master/LICENSE",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"format": "prettier --write ."
|
|
33
33
|
},
|
|
34
34
|
"engines": {
|
|
35
|
-
"node": "~18.
|
|
35
|
+
"node": "~18.11.0",
|
|
36
36
|
"npm": "^8.19.2"
|
|
37
37
|
},
|
|
38
38
|
"type": "module",
|
|
@@ -46,22 +46,22 @@
|
|
|
46
46
|
"@types/google.accounts": "0.0.2",
|
|
47
47
|
"@types/jsonwebtoken": "^8.5.9",
|
|
48
48
|
"@types/pg": "^8.6.5",
|
|
49
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
50
|
-
"@typescript-eslint/parser": "^5.
|
|
49
|
+
"@typescript-eslint/eslint-plugin": "^5.40.1",
|
|
50
|
+
"@typescript-eslint/parser": "^5.40.1",
|
|
51
51
|
"bootstrap": "^5.2.2",
|
|
52
52
|
"eslint": "^8.25.0",
|
|
53
53
|
"eslint-config-prettier": "^8.5.0",
|
|
54
54
|
"eslint-plugin-svelte3": "^4.0.0",
|
|
55
|
-
"google-auth-library": "^8.
|
|
55
|
+
"google-auth-library": "^8.6.0",
|
|
56
56
|
"jsonwebtoken": "^8.5.1",
|
|
57
57
|
"prettier": "^2.7.1",
|
|
58
|
-
"prettier-plugin-svelte": "^2.
|
|
58
|
+
"prettier-plugin-svelte": "^2.8.0",
|
|
59
59
|
"sass": "^1.55.0",
|
|
60
|
-
"svelte": "^3.
|
|
61
|
-
"svelte-check": "^2.9.
|
|
60
|
+
"svelte": "^3.52.0",
|
|
61
|
+
"svelte-check": "^2.9.2",
|
|
62
62
|
"svelte-preprocess": "^4.10.7",
|
|
63
63
|
"tslib": "^2.4.0",
|
|
64
64
|
"typescript": "^4.8.4",
|
|
65
|
-
"vite": "^3.1.
|
|
65
|
+
"vite": "^3.1.8"
|
|
66
66
|
}
|
|
67
67
|
}
|