-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.3 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.3 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": "khadimemillat",
"version": "1.7.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"postinstall": "echo 'Skipping Puppeteer Chrome download for Vercel deployment'",
"migrate": "npx tsx scripts/run-migrations.ts",
"migrate:notifications": "npx tsx scripts/migrate-notification-models.ts",
"seed:welfare": "npx tsx scripts/seed-welfare-programs.ts",
"deploy:check": "npx tsx scripts/deployment-check.ts",
"lint": "next lint",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@botpress/webchat": "^3.2.11",
"@clerk/nextjs": "^6.34.0",
"@clerk/types": "^4.85.0",
"@hookform/resolvers": "^5.2.1",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-email/render": "^1.3.1",
"@sparticuz/chromium-min": "^141.0.0",
"@types/uuid": "^11.0.0",
"@zxing/browser": "^0.1.5",
"@zxing/library": "^0.21.3",
"axios": "^1.11.0",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.7.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"html2canvas": "^1.4.1",
"isomorphic-dompurify": "^2.28.0",
"jsdom": "^27.0.0",
"json-as-xlsx": "^2.5.6",
"jspdf": "^3.0.4",
"lucide-react": "^0.543.0",
"mongoose": "^8.18.1",
"motion": "^12.23.22",
"next": "16.0.7",
"next-cloudinary": "^6.16.0",
"next-pwa": "^5.6.0",
"next-themes": "^0.4.6",
"pdf-lib": "^1.17.1",
"prettier": "^3.6.2",
"puppeteer": "^24.24.1",
"razorpay": "^2.9.0",
"react": "19.2.0",
"react-day-picker": "^9.9.0",
"react-dom": "19.2.0",
"react-hook-form": "^7.62.0",
"react-responsive-carousel": "^3.2.23",
"recharts": "2.15.4",
"resend": "^6.1.2",
"sonner": "^2.0.7",
"svix": "^1.76.1",
"swr": "^2.3.6",
"tailwind-merge": "^3.3.1",
"uuid": "^13.0.0",
"vaul": "^1.1.2",
"web-push": "^3.6.7",
"zod": "^4.1.5"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/luxon": "^3.7.1",
"@types/node": "^20",
"@types/react": "19.2.0",
"@types/react-dom": "19.2.0",
"@types/web-push": "^3.6.4",
"baseline-browser-mapping": "^2.8.32",
"eslint-config-next": "^16.0.7",
"tailwindcss": "^4",
"tsx": "^4.19.2",
"tw-animate-css": "^1.3.8",
"typescript": "^5"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.0",
"@types/react-dom": "19.2.0"
},
"ignoredBuiltDependencies": [
"@clerk/shared",
"@tailwindcss/oxide",
"canvas",
"core-js-pure",
"esbuild",
"sharp"
],
"onlyBuiltDependencies": [
"core-js",
"puppeteer"
]
}
}