sveltekit-auth-example 1.0.57 → 1.0.59
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/.pnp.cjs +12786 -0
- package/.pnp.loader.mjs +2053 -0
- package/.yarn/install-state.gz +0 -0
- package/.yarnrc +5 -0
- package/CHANGELOG.md +6 -0
- package/README.md +2 -2
- package/package.json +28 -29
|
Binary file
|
package/.yarnrc
ADDED
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.59
|
|
5
|
+
* Bump pg, sveltekit, @types*, bootstrap, eslint, google-auth-library, sass, svelte, svelte-check, tslib, typescript, vite, vitest
|
|
6
|
+
|
|
7
|
+
# 1.0.58
|
|
8
|
+
* Bump pg, sveltekit, adapter-node, bootstrap, svelte, sass, jsonwebtoken, google-auth-library, vite, vitest
|
|
9
|
+
|
|
4
10
|
# 1.0.57
|
|
5
11
|
* Minor bumps for pg, tslib, typescript
|
|
6
12
|
|
package/README.md
CHANGED
|
@@ -45,7 +45,7 @@ git clone https://github.com/nstuyvesant/sveltekit-auth-example.git
|
|
|
45
45
|
|
|
46
46
|
# Install the dependencies
|
|
47
47
|
cd /sveltekit-auth-example
|
|
48
|
-
|
|
48
|
+
yarn install
|
|
49
49
|
|
|
50
50
|
# Create PostgreSQL database (only works if you installed PostgreSQL)
|
|
51
51
|
psql -d postgres -f db_create.sql
|
|
@@ -69,7 +69,7 @@ PUBLIC_GOOGLE_CLIENT_ID=replace_with_your_own
|
|
|
69
69
|
|
|
70
70
|
```bash
|
|
71
71
|
# Start the server and open the app in a new browser tab
|
|
72
|
-
|
|
72
|
+
yarn dev -- --open
|
|
73
73
|
```
|
|
74
74
|
|
|
75
75
|
## Valid logins
|
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sveltekit-auth-example",
|
|
3
3
|
"description": "SvelteKit Authentication Example",
|
|
4
|
-
"version": "1.0.
|
|
5
|
-
"private": false,
|
|
4
|
+
"version": "1.0.59",
|
|
6
5
|
"author": "Nate Stuyvesant",
|
|
7
6
|
"license": "https://github.com/nstuyvesant/sveltekit-auth-example/blob/master/LICENSE",
|
|
8
7
|
"repository": {
|
|
@@ -32,37 +31,37 @@
|
|
|
32
31
|
"format": "prettier --write ."
|
|
33
32
|
},
|
|
34
33
|
"engines": {
|
|
35
|
-
"node": "^18.
|
|
36
|
-
"npm": "^9.7.2"
|
|
34
|
+
"node": "^18.18.2"
|
|
37
35
|
},
|
|
38
36
|
"type": "module",
|
|
39
37
|
"dependencies": {
|
|
40
38
|
"@sendgrid/mail": "^7.7.0",
|
|
41
|
-
"pg": "^8.11.
|
|
39
|
+
"pg": "^8.11.3"
|
|
42
40
|
},
|
|
43
41
|
"devDependencies": {
|
|
44
|
-
"@sveltejs/adapter-node": "^1.
|
|
45
|
-
"@sveltejs/kit": "^1.
|
|
46
|
-
"@types/bootstrap": "5.2.
|
|
47
|
-
"@types/google.accounts": "^0.0.
|
|
48
|
-
"@types/jsonwebtoken": "^9.0.
|
|
49
|
-
"@types/pg": "^8.10.
|
|
50
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
51
|
-
"@typescript-eslint/parser": "^
|
|
52
|
-
"bootstrap": "^5.3.
|
|
53
|
-
"eslint": "^8.
|
|
54
|
-
"eslint-config-prettier": "^
|
|
42
|
+
"@sveltejs/adapter-node": "^1.3.1",
|
|
43
|
+
"@sveltejs/kit": "^1.27.2",
|
|
44
|
+
"@types/bootstrap": "5.2.8",
|
|
45
|
+
"@types/google.accounts": "^0.0.13",
|
|
46
|
+
"@types/jsonwebtoken": "^9.0.4",
|
|
47
|
+
"@types/pg": "^8.10.7",
|
|
48
|
+
"@typescript-eslint/eslint-plugin": "^6.9.1",
|
|
49
|
+
"@typescript-eslint/parser": "^6.9.1",
|
|
50
|
+
"bootstrap": "^5.3.2",
|
|
51
|
+
"eslint": "^8.52.0",
|
|
52
|
+
"eslint-config-prettier": "^9.0.0",
|
|
55
53
|
"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.
|
|
63
|
-
"tslib": "^2.6.
|
|
64
|
-
"typescript": "^5.
|
|
65
|
-
"vite": "^4.
|
|
66
|
-
"vitest": "^0.
|
|
67
|
-
}
|
|
68
|
-
|
|
54
|
+
"google-auth-library": "^9.2.0",
|
|
55
|
+
"jsonwebtoken": "^9.0.2",
|
|
56
|
+
"prettier": "^3.0.3",
|
|
57
|
+
"prettier-plugin-svelte": "^3.0.3",
|
|
58
|
+
"sass": "^1.69.5",
|
|
59
|
+
"svelte": "^4.2.2",
|
|
60
|
+
"svelte-check": "^3.5.2",
|
|
61
|
+
"tslib": "^2.6.2",
|
|
62
|
+
"typescript": "^5.2.2",
|
|
63
|
+
"vite": "^4.5.0",
|
|
64
|
+
"vitest": "^0.34.6"
|
|
65
|
+
},
|
|
66
|
+
"packageManager": "yarn@4.0.1"
|
|
67
|
+
}
|