-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.47 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
{
"name": "hiyvaru",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "tsx server.ts",
"build": "next build",
"start": "tsx server.ts",
"test": "vitest run",
"db:generate": "drizzle-kit generate",
"seed": "tsx scripts/seed.ts",
"demo": "tsx scripts/demo.ts",
"drill:crisis": "tsx scripts/e2e-crisis.ts",
"drill:chat": "tsx scripts/e2e-chat.ts",
"cap:add:ios": "cap add ios",
"cap:add:android": "cap add android",
"cap:sync": "cap sync",
"cap:open:ios": "cap open ios",
"cap:open:android": "cap open android"
},
"dependencies": {
"@capacitor/app": "^8.1.1",
"@capacitor/cli": "^8.4.2",
"@capacitor/core": "^8.4.2",
"@capacitor/haptics": "^8.0.2",
"@capacitor/push-notifications": "^8.1.2",
"@capacitor/status-bar": "^8.0.3",
"@electric-sql/pglite": "^0.5.4",
"bullmq": "^5.81.1",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"ioredis": "^5.11.1",
"next": "15.5.21",
"next-intl": "^4.13.4",
"pg": "^8.22.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"twilio": "^6.0.2",
"web-push": "^3.6.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^20",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/web-push": "^3.6.4",
"drizzle-kit": "^0.31.10",
"tsx": "^4.23.1",
"typescript": "^5",
"vitest": "^4.1.10"
}
}