-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.91 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.91 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
114
115
116
117
{
"name": "medicsync",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"format": "prettier --write \"**/*.ts\" \"**/*.tsx\"",
"db:health": "curl -s http://localhost:3000/api/health | jq",
"db:test": "node -e \"require('./lib/mongodb.ts').then(db => console.log('DB Connected:', db.connection.readyState === 1))\"",
"migrate:encrypt": "node scripts/run-migration.js migrate",
"migrate:encrypt:dry": "node scripts/run-migration.js migrate --dry-run",
"migrate:verify": "node scripts/run-migration.js verify",
"migrate:rollback": "node scripts/run-migration.js rollback",
"validate:encryption": "tsx scripts/validate-encryption.ts"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@hookform/resolvers": "^3.9.1",
"@radix-ui/react-accordion": "latest",
"@radix-ui/react-alert-dialog": "latest",
"@radix-ui/react-aspect-ratio": "latest",
"@radix-ui/react-avatar": "latest",
"@radix-ui/react-checkbox": "latest",
"@radix-ui/react-collapsible": "latest",
"@radix-ui/react-context-menu": "latest",
"@radix-ui/react-dialog": "latest",
"@radix-ui/react-dropdown-menu": "latest",
"@radix-ui/react-hover-card": "latest",
"@radix-ui/react-label": "latest",
"@radix-ui/react-menubar": "latest",
"@radix-ui/react-navigation-menu": "latest",
"@radix-ui/react-popover": "latest",
"@radix-ui/react-progress": "latest",
"@radix-ui/react-radio-group": "latest",
"@radix-ui/react-scroll-area": "latest",
"@radix-ui/react-select": "latest",
"@radix-ui/react-separator": "latest",
"@radix-ui/react-slider": "latest",
"@radix-ui/react-slot": "latest",
"@radix-ui/react-switch": "latest",
"@radix-ui/react-tabs": "latest",
"@radix-ui/react-toast": "latest",
"@radix-ui/react-toggle": "latest",
"@radix-ui/react-toggle-group": "latest",
"@radix-ui/react-tooltip": "latest",
"@supabase/supabase-js": "^2.53.0",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/react-query": "^5.84.1",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/mongoose": "^5.11.96",
"@types/qrcode": "^1.5.5",
"@types/web-push": "^3.6.4",
"@yudiel/react-qr-scanner": "^2.3.1",
"autoprefixer": "^10.4.20",
"axios": "^1.11.0",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "latest",
"date-fns": "4.1.0",
"dotenv": "^17.2.1",
"embla-carousel-react": "latest",
"geist": "latest",
"groq-sdk": "^0.30.0",
"input-otp": "latest",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.454.0",
"mongoose": "^8.17.0",
"next": "15.2.4",
"next-themes": "latest",
"node-cache": "^5.1.2",
"qrcode": "^1.5.4",
"react": "^19",
"react-day-picker": "latest",
"react-dom": "^19",
"react-hook-form": "latest",
"react-is": "^19.1.1",
"react-markdown": "^10.1.0",
"react-resizable-panels": "latest",
"recharts": "latest",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"sonner": "latest",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"vaul": "latest",
"web-push": "^3.6.7",
"zod": "^3.24.1",
"zustand": "^5.0.7"
},
"devDependencies": {
"@jest/globals": "^30.0.5",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"jest-environment-node": "^30.0.5",
"postcss": "^8.5",
"prettier": "^3.6.2",
"sharp": "^0.34.3",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.4.1",
"tsx": "^4.20.3",
"typescript": "^5"
}
}