-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 4.63 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 4.63 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "healthcal-pro",
"version": "0.2.1",
"private": true,
"scripts": {
"dev": "next dev",
"dev:stable": "next dev --webpack",
"build": "prisma generate && node -e \"require('dotenv').config({path:'.env'}); require('dotenv').config({path:'.env.local'}); require('child_process').execSync('npx prisma db push', {stdio:'inherit', env:process.env})\" && next build",
"start": "next start",
"lint": "eslint .",
"prisma:generate": "prisma generate",
"prisma:push": "node -e \"require('dotenv').config({path:'.env.local'}); require('child_process').execSync('npx prisma db push', {stdio:'inherit', env:process.env})\"",
"prisma:migrate": "node -e \"require('dotenv').config({path:'.env.local'}); require('child_process').execSync('npx prisma migrate dev', {stdio:'inherit', env:process.env})\"",
"db:migrate": "tsx scripts/migrate.ts",
"db:seed": "tsx scripts/seed.ts",
"db:check-users": "tsx scripts/check-users.ts",
"db:check-empty": "tsx scripts/check-db-empty.ts",
"db:manage-user": "tsx scripts/manage-user.ts",
"db:seed-test-user": "tsx scripts/seed-test-user.ts",
"db:backfill-user-audit": "tsx scripts/backfill-user-audit.ts",
"db:backfill-org-audit": "tsx scripts/backfill-organization-audit.ts",
"db:backfill-doctor-specialty-medicine": "tsx scripts/backfill-doctor-specialty-medicine.ts",
"db:backfill-invoice-audit": "tsx scripts/backfill-invoice-audit.ts",
"db:prepare": "npm run prisma:push && npm run db:seed-test-user",
"db:seed-demo-clinical": "tsx scripts/seed-demo-patient-clinical.ts",
"db:seed-extended": "tsx scripts/seed-extended-schema.ts",
"db:seed-doctor-profiles": "tsx scripts/seed-doctor-profiles.ts",
"db:seed-phones": "tsx scripts/seed-phone-backfill.ts",
"db:seed-demo-full": "tsx scripts/seed-demo-full.ts",
"db:check-demo-seed": "tsx scripts/check-demo-seed-health.ts",
"db:seed-demo-appointments": "tsx scripts/seed-demo-appointments-curated.ts",
"db:reset-demo-appointments": "tsx scripts/reset-demo-appointments.ts",
"db:seed-demo-appointments-timeline": "tsx scripts/seed-demo-appointments-timeline.ts",
"db:seed-org-portal-patient-member": "tsx scripts/seed-org-portal-patient-member.ts",
"db:patch-demo-billing-reset": "tsx scripts/patch-demo-billing-reset.ts",
"db:clear": "tsx scripts/db-clear.ts",
"test:smoke-invalidation": "tsx scripts/smoke-cross-tab-invalidation.ts",
"qa:local": "npm run prisma:push && npm run db:seed-test-user && npm run test",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@prisma/client": "^6.19.3",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-hover-card": "^1.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@sentry/nextjs": "^10.58.0",
"@tanstack/query-async-storage-persister": "^5.100.9",
"@tanstack/query-sync-storage-persister": "^5.100.9",
"@tanstack/react-query": "^5.91.2",
"@tanstack/react-query-persist-client": "^5.100.9",
"@tanstack/react-table": "^8.21.3",
"@vercel/blob": "^2.3.3",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"csv-parse": "^6.2.0",
"date-fns": "^4.2.1",
"date-fns-tz": "^3.2.0",
"dotenv": "^17.2.3",
"framer-motion": "^12.38.0",
"jose": "^6.2.2",
"jsonwebtoken": "^9.0.3",
"lucide-react": "^1.8.0",
"next": "^16.2.4",
"next-themes": "^0.4.6",
"nodemailer": "^8.0.5",
"pg": "^8.20.0",
"prisma": "^6.19.3",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-day-picker": "^10.0.1",
"react-dom": "^19.2.4",
"react-icons": "^5.6.0",
"recharts": "^2.15.4",
"redoc": "^2.5.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"tree": "^0.1.3",
"uuid": "^14.0.0",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@tailwindcss/postcss": "^4.2.2",
"@tanstack/react-query-devtools": "^5.91.3",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.6.0",
"@types/nodemailer": "^8.0.0",
"@types/pg": "^8.18.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.4",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"tw-animate-css": "^1.3.4",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"overrides": {
"undici": ">=7.24.0",
"postcss": "^8.5.12"
}
}