-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.14 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.14 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
{
"name": "mummy",
"version": "1.0.0",
"description": "Mummy - WhatsApp Health Bot for families",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"start:dev": "tsx src/index.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"whatsapp",
"health",
"bot",
"claude",
"ai"
],
"author": "",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"express": "^4.21.2",
"mongoose": "^8.9.3",
"twilio": "^5.3.5",
"dotenv": "^16.4.7",
"axios": "^1.7.9",
"pdf-parse": "^1.1.1",
"node-cron": "^3.0.3",
"sharp": "^0.33.5",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.5",
"@types/node-cron": "^3.0.11",
"@types/pdf-parse": "^1.1.4",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.18.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
}
}