forked from nstuyvesant/sveltekit-auth-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.85 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
{
"name": "sveltekit-auth-example",
"description": "SvelteKit Authentication Example",
"version": "1.0.35",
"private": false,
"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 .",
"format": "prettier --write ."
},
"engines": {
"node": ">=18.11.0",
"npm": "^9.1.1"
},
"type": "module",
"dependencies": {
"pg": "^8.8.0"
},
"devDependencies": {
"@sveltejs/adapter-node": "latest",
"@sveltejs/kit": "latest",
"@types/bootstrap": "5.2.6",
"@types/google.accounts": "0.0.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/pg": "^8.6.5",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"bootstrap": "^5.2.2",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"google-auth-library": "^8.7.0",
"jsonwebtoken": "^8.5.1",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.8.0",
"sass": "^1.56.1",
"svelte": "^3.53.1",
"svelte-check": "^2.9.2",
"svelte-preprocess": "^4.10.7",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"vite": "^3.2.4"
}
}