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.
Binary file
package/.yarnrc ADDED
@@ -0,0 +1,5 @@
1
+ # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2
+ # yarn lockfile v1
3
+
4
+
5
+ yarn-path ".yarn/releases/yarn-1.22.19.cjs"
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
- npm install
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
- npm run dev -- --open
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.57",
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.16.1",
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.1"
39
+ "pg": "^8.11.3"
42
40
  },
43
41
  "devDependencies": {
44
- "@sveltejs/adapter-node": "^1.2.4",
45
- "@sveltejs/kit": "^1.20.5",
46
- "@types/bootstrap": "5.2.6",
47
- "@types/google.accounts": "^0.0.7",
48
- "@types/jsonwebtoken": "^9.0.2",
49
- "@types/pg": "^8.10.2",
50
- "@typescript-eslint/eslint-plugin": "^5.60.1",
51
- "@typescript-eslint/parser": "^5.60.1",
52
- "bootstrap": "^5.3.0",
53
- "eslint": "^8.43.0",
54
- "eslint-config-prettier": "^8.8.0",
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": "^8.8.0",
57
- "jsonwebtoken": "^9.0.0",
58
- "prettier": "^2.8.8",
59
- "prettier-plugin-svelte": "^2.10.1",
60
- "sass": "^1.63.6",
61
- "svelte": "^4.0.0",
62
- "svelte-check": "^3.4.4",
63
- "tslib": "^2.6.0",
64
- "typescript": "^5.1.5",
65
- "vite": "^4.3.9",
66
- "vitest": "^0.32.2"
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
+ }