-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.56 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "medication-tracker",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"vercel-build": "node scripts/vercel-build.mjs",
"preview": "vite preview",
"prepare": "husky && svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"playwright:install": "playwright install --with-deps chromium",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"seed:demo": "tsx scripts/seed-demo.ts",
"seed:e2e": "tsx scripts/seed-e2e.ts",
"encrypt:totp": "tsx scripts/encrypt-totp-secrets.ts"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@sveltejs/adapter-vercel": "^6.3.3",
"@sveltejs/kit": "^2.57.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@tailwindcss/vite": "^4.2.2",
"@types/pdfkit": "^0.17.5",
"@types/qrcode": "^1.5.6",
"@types/web-push": "^3.6.4",
"@vitest/coverage-v8": "^4.1.5",
"drizzle-kit": "^0.31.10",
"eslint": "^10.2.1",
"eslint-plugin-svelte": "^3.17.1",
"globals": "^17.5.0",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"lint-staged": "^16.4.0",
"playwright": "^1.59.1",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.8.0",
"sharp": "^0.34.5",
"svelte": "^5.55.2",
"svelte-check": "^4.4.6",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.59.1",
"vite": "^8.0.7",
"vitest": "^4.1.4"
},
"dependencies": {
"@lucia-auth/adapter-drizzle": "^1.1.0",
"@neondatabase/serverless": "^1.0.2",
"@node-rs/argon2": "^2.0.2",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@oslojs/otp": "^1.1.0",
"@paralleldrive/cuid2": "^3.3.0",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"arctic": "^3.7.0",
"drizzle-orm": "^0.45.2",
"lucia": "^3.2.2",
"pdfkit": "^0.18.0",
"qrcode": "^1.5.4",
"resend": "^6.11.0",
"web-push": "^3.6.7",
"zod": "^4.3.6"
}
}