sveltekit-auth-example 1.0.56 → 1.0.58
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/package.json +23 -23
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.58
|
|
5
|
+
* Bump pg, sveltekit, adapter-node, bootstrap, svelte, sass, jsonwebtoken, google-auth-library, vite, vitest
|
|
6
|
+
|
|
7
|
+
# 1.0.57
|
|
8
|
+
* Minor bumps for pg, tslib, typescript
|
|
9
|
+
|
|
4
10
|
# 1.0.56
|
|
5
11
|
* Svelte 4, minor updates for other dependencies
|
|
6
12
|
|
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.58",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Nate Stuyvesant",
|
|
7
7
|
"license": "https://github.com/nstuyvesant/sveltekit-auth-example/blob/master/LICENSE",
|
|
@@ -32,37 +32,37 @@
|
|
|
32
32
|
"format": "prettier --write ."
|
|
33
33
|
},
|
|
34
34
|
"engines": {
|
|
35
|
-
"node": "^18.
|
|
36
|
-
"npm": "^9.
|
|
35
|
+
"node": "^18.17.1",
|
|
36
|
+
"npm": "^9.8.1"
|
|
37
37
|
},
|
|
38
38
|
"type": "module",
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@sendgrid/mail": "^7.7.0",
|
|
41
|
-
"pg": "^8.11.
|
|
41
|
+
"pg": "^8.11.2"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@sveltejs/adapter-node": "^1.
|
|
45
|
-
"@sveltejs/kit": "^1.
|
|
44
|
+
"@sveltejs/adapter-node": "^1.3.1",
|
|
45
|
+
"@sveltejs/kit": "^1.22.4",
|
|
46
46
|
"@types/bootstrap": "5.2.6",
|
|
47
|
-
"@types/google.accounts": "^0.0.
|
|
47
|
+
"@types/google.accounts": "^0.0.8",
|
|
48
48
|
"@types/jsonwebtoken": "^9.0.2",
|
|
49
49
|
"@types/pg": "^8.10.2",
|
|
50
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
51
|
-
"@typescript-eslint/parser": "^
|
|
52
|
-
"bootstrap": "^5.3.
|
|
53
|
-
"eslint": "^8.
|
|
54
|
-
"eslint-config-prettier": "^
|
|
50
|
+
"@typescript-eslint/eslint-plugin": "^6.3.0",
|
|
51
|
+
"@typescript-eslint/parser": "^6.3.0",
|
|
52
|
+
"bootstrap": "^5.3.1",
|
|
53
|
+
"eslint": "^8.46.0",
|
|
54
|
+
"eslint-config-prettier": "^9.0.0",
|
|
55
55
|
"eslint-plugin-svelte3": "^4.0.0",
|
|
56
|
-
"google-auth-library": "^
|
|
57
|
-
"jsonwebtoken": "^9.0.
|
|
58
|
-
"prettier": "^
|
|
59
|
-
"prettier-plugin-svelte": "^
|
|
60
|
-
"sass": "^1.
|
|
61
|
-
"svelte": "^4.
|
|
62
|
-
"svelte-check": "^3.4.
|
|
63
|
-
"tslib": "^2.
|
|
64
|
-
"typescript": "^5.1.
|
|
65
|
-
"vite": "^4.
|
|
66
|
-
"vitest": "^0.
|
|
56
|
+
"google-auth-library": "^9.0.0",
|
|
57
|
+
"jsonwebtoken": "^9.0.1",
|
|
58
|
+
"prettier": "^3.0.1",
|
|
59
|
+
"prettier-plugin-svelte": "^3.0.3",
|
|
60
|
+
"sass": "^1.65.1",
|
|
61
|
+
"svelte": "^4.1.2",
|
|
62
|
+
"svelte-check": "^3.4.6",
|
|
63
|
+
"tslib": "^2.6.1",
|
|
64
|
+
"typescript": "^5.1.6",
|
|
65
|
+
"vite": "^4.4.9",
|
|
66
|
+
"vitest": "^0.34.1"
|
|
67
67
|
}
|
|
68
68
|
}
|