forked from jrCleber/bot-baileys-firebase
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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
{
"name": "bot-baileys-firebase",
"version": "1.0.0",
"description": "self service bot for whatsapp",
"main": "initializer.ts",
"repository": {
"url": "https://github.com/jrCleber/bot-baileys-firebase"
},
"author": {
"name": "jrCleber",
"url": "https://github.com/jrCleber"
},
"scripts": {
"build": "tsc && ts-node --files --transpile-only ./build.ts",
"dev": "ts-node --files --transpile-only ./modules/initializer.bot.ts",
"start:app": "tsc && node ./dist/modules/initializer.bot.js",
"start:prod": "node ./modules/initializer.bot.js",
"test": "clear && ts-node --files --transpile-only ./tests/all.test.ts",
"prisma:migrate": "npx prisma migrate dev --name init",
"prisma:generate": "npx prisma generate"
},
"license": "MIT",
"private": true,
"keywords": [
"whatsapp",
"js-whatsapp",
"whatsapp-api",
"whatsapp-web",
"whatsapp-chat",
"whatsapp-group",
"automation",
"multi-device",
"baileys",
"bot"
],
"dependencies": {
"@adiwajshing/baileys": "^4.1.0",
"@prisma/client": "^3.15.2",
"axios": "^0.26.0",
"boom": "^7.3.0",
"dayjs": "^1.10.8",
"firebase-admin": "^10.0.2",
"pino": "^7.8.0",
"qrcode-terminal": "^0.12.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"prisma": "^3.15.2",
"ts-node": "^10.6.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.2"
}
}