-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
71 lines (71 loc) · 1.94 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "sveltekit-auth-example",
"description": "SvelteKit Authentication Example",
"version": "5.0.1",
"author": "Nate Stuyvesant",
"license": "https://github.com/nstuyvesant/sveltekit-auth-example/blob/master/LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/nstuyvesant/sveltekit-auth-example.git"
},
"bugs": {
"url": "https://github.com/nstuyvesant/sveltekit-auth-example/issues"
},
"keywords": [
"svelte",
"sveltekit",
"authentication",
"example",
"google",
"postgresql"
],
"scripts": {
"start": "node build",
"dev": "vite dev",
"build": "vite build",
"package": "svelte-kit package",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint . --ignore-path ./.eslintignore",
"format": "prettier --write . --ignore-path ./.eslintignore"
},
"engines": {
"node": "^20.18.0"
},
"type": "module",
"dependencies": {
"@sendgrid/mail": "^8.1.4",
"pg": "^8.13.1"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@sveltejs/adapter-node": "^5.2.9",
"@sveltejs/kit": "^2.8.1",
"@sveltejs/vite-plugin-svelte": "^4.0.1",
"@types/bootstrap": "5.2.10",
"@types/google.accounts": "^0.0.15",
"@types/jsonwebtoken": "^9.0.7",
"@types/pg": "^8.11.10",
"bootstrap": "^5.3.3",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-svelte": "^2.46.0",
"globals": "^15.12.0",
"google-auth-library": "^9.15.0",
"jsonwebtoken": "^9.0.2",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.8",
"sass": "^1.81.0",
"svelte": "^5.2.4",
"svelte-check": "^4.0.9",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"vite": "^5.4.11",
"vitest": "^2.1.5"
},
"packageManager": "[email protected]",
"prettier": "./prettier.config.mjs"
}