sveltekit-auth-example 1.0.50 → 1.0.51
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 +3 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
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.51",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Nate Stuyvesant",
|
|
7
7
|
"license": "https://github.com/nstuyvesant/sveltekit-auth-example/blob/master/LICENSE",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"build": "vite build",
|
|
27
27
|
"package": "svelte-kit package",
|
|
28
28
|
"preview": "vite preview",
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
29
|
+
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
30
|
+
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
31
|
+
"lint": "prettier --check . && eslint .",
|
|
32
|
+
"format": "prettier --write ."
|
|
33
33
|
},
|
|
34
34
|
"engines": {
|
|
35
35
|
"node": "^18.14.1",
|
|
@@ -42,13 +42,13 @@
|
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@sveltejs/adapter-node": "^1.2.0",
|
|
45
|
-
"@sveltejs/kit": "^1.
|
|
45
|
+
"@sveltejs/kit": "^1.8.3",
|
|
46
46
|
"@types/bootstrap": "5.2.6",
|
|
47
47
|
"@types/google.accounts": "0.0.6",
|
|
48
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.53.0",
|
|
51
|
+
"@typescript-eslint/parser": "^5.53.0",
|
|
52
52
|
"bootstrap": "^5.2.3",
|
|
53
53
|
"eslint": "^8.34.0",
|
|
54
54
|
"eslint-config-prettier": "^8.6.0",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"svelte-check": "^3.0.3",
|
|
63
63
|
"tslib": "^2.5.0",
|
|
64
64
|
"typescript": "^4.9.5",
|
|
65
|
-
"vite": "^4.1.
|
|
65
|
+
"vite": "^4.1.4",
|
|
66
66
|
"vitest": "^0.28.5"
|
|
67
67
|
}
|
|
68
68
|
}
|