-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.56 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.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
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
{
"name": "hope-for-haiti",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "prisma generate",
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:seed": "env-cmd -f .env tsx scripts/seed.ts",
"db:clear": "env-cmd -f .env tsx scripts/clear.ts",
"db:migrate": "env-cmd -f .env npx prisma migrate dev",
"db:view": "env-cmd -f .env npx prisma studio",
"db:seed-chroma": "env-cmd -f .env tsx scripts/seed-chroma.ts",
"db:createStaffUser": "env-cmd -f .env tsx scripts/createStaffUser.ts",
"db:resync-stream-tokens": "env-cmd -f .env tsx scripts/resync-stream-tokens.ts",
"ci:db:migrate": "npx prisma migrate dev",
"prepare": "husky",
"email:dev": "email dev --dir ./src/email --port 4000",
"netlify": "netlify dev",
"functions:expiringItems": "netlify functions:invoke expiringItems --port 8888",
"functions:notifications": "netlify functions:invoke notifications --port 8888",
"functions:supportNotifications": "netlify functions:invoke supportNotifications --port 8888"
},
"dependencies": {
"@ably/chat": "^1.1.0",
"@azure/storage-blob": "^12.27.0",
"@chroma-core/default-embed": "^0.1.8",
"@chroma-core/openai": "^0.1.7",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@headlessui/react": "^2.2.1",
"@hello-pangea/dnd": "^18.0.1",
"@netlify/functions": "^5.0.1",
"@phosphor-icons/react": "^2.1.7",
"@prisma/client": "^6.18.0",
"@sendgrid/mail": "^8.1.4",
"@tailwindcss/forms": "^0.5.10",
"@types/leaflet": "^1.9.21",
"@types/leaflet.markercluster": "^1.5.6",
"@types/react-signature-canvas": "^1.0.7",
"@types/tmp": "^0.2.6",
"ably": "^2.14.0",
"argon2": "^0.41.1",
"chart.js": "^4.5.1",
"chromadb": "^3.1.0",
"date-fns": "^4.1.0",
"formidable": "^3.5.2",
"highs": "^1.8.0",
"leaflet": "^1.9.4",
"leaflet.markercluster": "^1.5.3",
"next": "15.0.7",
"next-auth": "^5.0.0-beta.25",
"onnxruntime-node": "^1.23.0",
"openai": "^4.104.0",
"papaparse": "^5.5.2",
"promisify": "^0.0.3",
"react-chartjs-2": "^5.3.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.4.0",
"react-joyride": "^3.0.0-7",
"react-leaflet": "^5.0.0",
"react-leaflet-cluster": "^4.0.0",
"react-markdown": "^10.1.0",
"react-select": "^5.10.2",
"react-signature-canvas": "^1.1.0-alpha.2",
"react-sketch-canvas": "^6.2.0",
"react-tooltip": "^5.28.0",
"stream-chat": "^9.25.0",
"stream-chat-react": "^13.11.0",
"tailwind-merge": "^3.2.0",
"tmp": "^0.2.5",
"util": "^0.12.5",
"uuid": "^11.0.5",
"xlsx": "^0.18.5",
"zod": "^3.24.1",
"zod-form-data": "^2.0.5"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@react-email/components": "^0.5.2",
"@react-email/preview-server": "^4.2.8",
"@types/formidable": "^3.4.5",
"@types/node": "^20",
"@types/papaparse": "^5.3.15",
"@types/react": "^19",
"@types/react-dom": "^19",
"env-cmd": "^10.1.0",
"eslint": "^8",
"eslint-config-next": "15.0.4",
"husky": "^9.1.7",
"netlify": "^23.9.5",
"postcss": "^8",
"prettier": "^3.4.2",
"prisma": "^6.18.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-email": "^4.2.8",
"tailwindcss": "^3.4.1",
"tsx": "^4.19.2",
"typescript": "5.8.3"
}
}