-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
{
"name": "bot-wa",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon src/index.ts",
"start:prod": "node dist/index.js",
"worker": "ts-node src/temporal/worker.ts",
"worker:prod": "node dist/temporal/worker.js",
"build": "npx tsc --build",
"prisma:migrate": "npx prisma migrate dev --name dev",
"prisma:generate": "npx prisma generate"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/boom": "^10.0.1",
"@prisma/client": "^5.20.0",
"@temporalio/activity": "^1.11.3",
"@temporalio/client": "^1.11.3",
"@temporalio/worker": "^1.11.3",
"@temporalio/workflow": "^1.11.3",
"@types/http-errors": "^2.0.4",
"@types/multer": "^1.4.12",
"@types/node": "^20.11.17",
"@whiskeysockets/baileys": "^6.6.0",
"cron-parser": "^4.9.0",
"dotenv": "^16.4.1",
"express": "^4.21.0",
"moment-timezone": "^0.5.45",
"multer": "^1.4.5-lts.1",
"nanoid": "3.x",
"node-cache": "^5.1.2",
"nodemon": "^3.0.3",
"pino": "^8.18.0",
"prisma": "^5.20.0",
"qrcode-terminal": "^0.12.0",
"randexp": "^0.5.3",
"readline": "^1.3.0",
"sqlite3": "^5.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/express": "^4.17.21"
}
}