sveltekit-auth-example 1.0.43 → 1.0.45
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 +6 -0
- package/README.md +2 -2
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# Backlog
|
|
2
2
|
* Add password complexity checking on /register and /profile pages (only checks for length currently despite what the pages say)
|
|
3
3
|
|
|
4
|
+
# 1.0.45
|
|
5
|
+
* Bump @sveltejs/kit, adapter-node, svelte-check, @typescript*, eslint, prettier, vitest, @types/jsonwebtoken
|
|
6
|
+
|
|
7
|
+
# 1.0.44
|
|
8
|
+
* Bump @sveltejs/kit, svelte
|
|
9
|
+
|
|
4
10
|
# 1.0.43
|
|
5
11
|
* Bump @sveltejs/kit, svelte-check, vitest, @typescript*, prettier
|
|
6
12
|
|
package/README.md
CHANGED
|
@@ -30,8 +30,8 @@ The forgot password / password reset functionality uses a JWT and [**SendGrid**]
|
|
|
30
30
|
|
|
31
31
|
## Prerequisites
|
|
32
32
|
- PostgreSQL 14.5 or higher
|
|
33
|
-
- Node.js 18.
|
|
34
|
-
- npm 9.
|
|
33
|
+
- Node.js 18.13.0 or higher
|
|
34
|
+
- npm 9.3.1 or higher
|
|
35
35
|
- Google API client
|
|
36
36
|
- Twilio SendGrid account (only used for emailing password reset link - the sample can run without it but forgot password will not work)
|
|
37
37
|
|
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.45",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Nate Stuyvesant",
|
|
7
7
|
"license": "https://github.com/nstuyvesant/sveltekit-auth-example/blob/master/LICENSE",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"engines": {
|
|
35
35
|
"node": ">=18.13.0",
|
|
36
|
-
"npm": "^9.
|
|
36
|
+
"npm": "^9.3.1"
|
|
37
37
|
},
|
|
38
38
|
"type": "module",
|
|
39
39
|
"dependencies": {
|
|
@@ -41,28 +41,28 @@
|
|
|
41
41
|
"pg": "^8.8.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@sveltejs/adapter-node": "^1.1.
|
|
45
|
-
"@sveltejs/kit": "^1.
|
|
44
|
+
"@sveltejs/adapter-node": "^1.1.4",
|
|
45
|
+
"@sveltejs/kit": "^1.2.9",
|
|
46
46
|
"@types/bootstrap": "5.2.6",
|
|
47
47
|
"@types/google.accounts": "0.0.5",
|
|
48
|
-
"@types/jsonwebtoken": "^9.0.
|
|
48
|
+
"@types/jsonwebtoken": "^9.0.1",
|
|
49
49
|
"@types/pg": "^8.6.6",
|
|
50
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
51
|
-
"@typescript-eslint/parser": "^5.
|
|
50
|
+
"@typescript-eslint/eslint-plugin": "^5.49.0",
|
|
51
|
+
"@typescript-eslint/parser": "^5.49.0",
|
|
52
52
|
"bootstrap": "^5.2.3",
|
|
53
|
-
"eslint": "^8.
|
|
53
|
+
"eslint": "^8.32.0",
|
|
54
54
|
"eslint-config-prettier": "^8.6.0",
|
|
55
55
|
"eslint-plugin-svelte3": "^4.0.0",
|
|
56
56
|
"google-auth-library": "^8.7.0",
|
|
57
57
|
"jsonwebtoken": "^9.0.0",
|
|
58
|
-
"prettier": "^2.8.
|
|
58
|
+
"prettier": "^2.8.3",
|
|
59
59
|
"prettier-plugin-svelte": "^2.9.0",
|
|
60
60
|
"sass": "^1.57.1",
|
|
61
|
-
"svelte": "^3.55.
|
|
62
|
-
"svelte-check": "^3.0.
|
|
61
|
+
"svelte": "^3.55.1",
|
|
62
|
+
"svelte-check": "^3.0.3",
|
|
63
63
|
"tslib": "^2.4.1",
|
|
64
64
|
"typescript": "^4.9.4",
|
|
65
65
|
"vite": "^4.0.4",
|
|
66
|
-
"vitest": "^0.
|
|
66
|
+
"vitest": "^0.28.2"
|
|
67
67
|
}
|
|
68
68
|
}
|