-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
65 lines (65 loc) · 2.09 KB
/
package.json
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
{
"name": "whatsapp-ai-assistant",
"version": "3.0.0",
"description": "WhatsApp chatbot",
"module": "src/index.ts",
"type": "module",
"scripts": {
"start": "tsx src/index.ts",
"dev": "tsx watch src/index.ts",
"studio": "prisma studio",
"docker:build": "docker build -t whatsapp-assistant .",
"docker:start": "docker run -it -d --name whatsapp-assistant whatsapp-assistant",
"docker:build:start": "pnpm docker:build && pnpm docker:start",
"docker:stop": "docker stop whatsapp-assistant",
"build": "prisma generate && prisma migrate deploy",
"reset-db": "prisma migrate reset --force --skip-seed"
},
"repository": "https://github.com/WAppAI/assistant.git",
"author": "Luis Otavio <luisotaviomgrcont@gmail.com> and Matheus Veiga <veigamann@gmail.com>",
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.24",
"@types/node": "^20.12.7",
"@types/qrcode": "^1.5.5",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"prisma": "^5.13.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.4.5"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"@keyv/sqlite": "^3.6.7",
"@langchain/anthropic": "0.2.3",
"@langchain/community": "0.2.18",
"@langchain/core": "0.2.32",
"@langchain/google-genai": "^0.1.0",
"@langchain/google-vertexai-web": "0.0.19",
"@langchain/groq": "^0.1.1",
"@langchain/openai": "0.2.1",
"@prisma/client": "5.3.1",
"@types/common-tags": "^1.8.4",
"@types/node-schedule": "^2.1.7",
"@waylaidwanderer/chatgpt-api": "github:WAppAI/node-chatgpt-api",
"@whiskeysockets/baileys": "^6.7.8",
"cheerio": "1.0.0-rc.12",
"common-tags": "^1.8.2",
"dayjs": "^1.11.11",
"dotenv": "^16.4.5",
"dotenv-expand": "^10.0.0",
"fluent-ffmpeg": "^2.1.2",
"googleapis": "^126.0.1",
"groq-sdk": "^0.7.0",
"keyv": "^4.5.4",
"langchain": "0.2.9",
"link-preview-js": "^3.0.12",
"node-schedule": "^2.1.1",
"openai": "^4.39.0",
"pino": "^7.0.0",
"qrcode": "^1.5.3",
"qrcode-terminal": "^0.12.0",
"rrule": "^2.8.1",
"zod": "^3.23.5"
}
}