sveltekit-auth-example 1.0.12 → 1.0.13

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/README.md +1 -1
  3. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # Backlog for 1.0.14
2
+ * Refactor routing to be folder, not file-based - https://github.com/sveltejs/kit/discussions/5774 (file system router). More info: https://github.com/sveltejs/kit/discussions/5774#discussioncomment-3294867
3
+
4
+ # 1.0.13
5
+ * Bump dependencies
6
+
1
7
  # 1.0.12
2
8
  * Remove unnecessary reference from app.d.ts
3
9
  * Remove commented lines in svelte.config.js
package/README.md CHANGED
@@ -32,7 +32,7 @@ The forgot password functionality uses SendInBlue to send the email. You would n
32
32
  ## Prerequisites
33
33
  - PostgreSQL 14 or higher
34
34
  - Node.js 18.7.0 or higher
35
- - npm 8.15.0 or higher
35
+ - npm 8.18.0 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)
38
38
 
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.12",
4
+ "version": "1.0.13",
5
5
  "private": false,
6
6
  "author": "Nate Stuyvesant",
7
7
  "license": "https://github.com/nstuyvesant/sveltekit-auth-example/blob/master/LICENSE",
@@ -34,38 +34,38 @@
34
34
  },
35
35
  "engines": {
36
36
  "node": "~18.7.0",
37
- "npm": "^8.15.1"
37
+ "npm": "^8.18.0"
38
38
  },
39
39
  "type": "module",
40
40
  "dependencies": {
41
41
  "cookie": "^0.5.0",
42
42
  "dotenv": "^16.0.1",
43
- "google-auth-library": "^8.1.1",
43
+ "google-auth-library": "^8.2.0",
44
44
  "jsonwebtoken": "^8.5.1",
45
45
  "pg": "^8.7.3"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@sveltejs/adapter-node": "latest",
49
- "@sveltejs/kit": "latest",
50
- "@types/bootstrap": "5.2.1",
49
+ "@sveltejs/kit": "1.0.0-next.405",
50
+ "@types/bootstrap": "5.2.2",
51
51
  "@types/cookie": "^0.5.1",
52
52
  "@types/jsonwebtoken": "^8.5.8",
53
53
  "@types/pg": "^8.6.5",
54
- "@typescript-eslint/eslint-plugin": "^5.32.0",
55
- "@typescript-eslint/parser": "^5.32.0",
54
+ "@typescript-eslint/eslint-plugin": "^5.33.1",
55
+ "@typescript-eslint/parser": "^5.33.1",
56
56
  "bootstrap": "^5.2.0",
57
57
  "bootstrap-icons": "^1.9.1",
58
- "eslint": "^8.21.0",
58
+ "eslint": "^8.22.0",
59
59
  "eslint-config-prettier": "^8.5.0",
60
60
  "eslint-plugin-svelte3": "^4.0.0",
61
61
  "prettier": "^2.7.1",
62
62
  "prettier-plugin-svelte": "^2.7.0",
63
- "sass": "^1.54.0",
63
+ "sass": "^1.54.4",
64
64
  "svelte": "^3.49.0",
65
- "svelte-check": "^2.8.0",
65
+ "svelte-check": "^2.8.1",
66
66
  "svelte-preprocess": "^4.10.7",
67
67
  "tslib": "^2.4.0",
68
68
  "typescript": "^4.7.4",
69
- "vite": "^3.0.4"
69
+ "vite": "^3.0.8"
70
70
  }
71
71
  }