-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.89 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.89 KB
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
{
"name": "authhub",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"db:push": "drizzle-kit push",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"devDependencies": {
"@eslint/compat": "^1.3.1",
"@eslint/js": "^9.31.0",
"@sveltejs/adapter-node": "^5.2.13",
"@sveltejs/kit": "^2.22.5",
"@sveltejs/vite-plugin-svelte": "^6.0.0",
"@tailwindcss/vite": "^4.1.11",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.16.3",
"@types/nodemailer": "^6.4.17",
"daisyui": "^5.0.46",
"drizzle-kit": "^0.30.6",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-svelte": "^3.10.1",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"svelte": "^5.35.6",
"svelte-check": "^4.2.2",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3",
"typescript-eslint": "^8.36.0",
"vite": "^7.0.4",
"vite-plugin-devtools-json": "^0.2.1"
},
"dependencies": {
"@node-rs/argon2": "^2.0.2",
"@oslojs/binary": "^1.0.0",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@oslojs/otp": "^1.1.0",
"@oslojs/webauthn": "^1.0.0",
"@pilcrowjs/db-query": "^0.0.2",
"@pilcrowjs/object-parser": "^0.0.4",
"@sentry/sveltekit": "^9.43.0",
"arctic": "^3.7.0",
"better-sqlite3": "^11.10.0",
"drizzle-orm": "^0.40.1",
"nodemailer": "^7.0.5",
"uqr": "^0.1.2",
"zod": "^4.0.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"better-sqlite3",
"esbuild"
]
}
}