-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 822 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 822 Bytes
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
{
"name": "unthread-whatsapp-bot",
"version": "1.3.0",
"description": "WhatsApp bot integration for Unthread customer support via Twilio",
"module": "src/index.ts",
"type": "module",
"scripts": {
"dev": "bun --hot src/index.ts",
"start": "bun src/index.ts",
"lint": "biome check .",
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"dependencies": {
"@wgtechlabs/log-engine": "^2.3.1",
"@wgtechlabs/nuvex": "0.2.1",
"express": "^5.2.1",
"pg": "^8.20.0",
"redis": "^5.12.1",
"twilio": "^5.13.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@types/express": "^5.0.6",
"bun-types": "^1.3.12",
"typescript": "^5.9.3"
},
"overrides": {
"axios": "^1.15.0",
"follow-redirects": "^1.16.0",
"path-to-regexp": "^8.4.0"
}
}