-
Notifications
You must be signed in to change notification settings - Fork 271
/
package.json
106 lines (106 loc) · 3.01 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "whatsapp-api",
"version": "1.3.4",
"description": "Rest api for communication with WhatsApp",
"main": "./dist/src/main.js",
"scripts": {
"build": "tsc",
"start": "ts-node --files --transpile-only ./src/main.ts",
"start:prod": "bash start.sh",
"start:dev": "tsnd --files --transpile-only --respawn --ignore-watch node_modules ./src/main.ts",
"test": "clear && tsnd --files --transpile-only --respawn --ignore-watch node_modules ./test/all.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code-chat-br/whatsapp-api.git"
},
"keywords": [
"chat",
"communication",
"message",
"send message",
"whatsapp",
"js-whatsapp",
"whatsapp-api",
"whatsapp-web",
"whatsapp",
"whatsapp-chat",
"whatsapp-group",
"automation",
"multi-device",
"bot",
"apache-2.0"
],
"author": {
"name": "jrcleber",
"email": "[email protected]"
},
"license": "https://github.com/code-chat-br/whatsapp-api?tab=Apache-2.0-1-ov-file",
"bugs": {
"url": "https://github.com/code-chat-br/whatsapp-api/issues"
},
"homepage": "https://github.com/code-chat-br/whatsapp-api#readme",
"dependencies": {
"@adiwajshing/keyed-db": "^0.2.4",
"@hapi/boom": "^10.0.1",
"@prisma/client": "^5.19.1",
"@whiskeysockets/baileys": "^6.7.9",
"axios": "^1.7.7",
"class-validator": "^0.14.0",
"cross-env": "^7.0.3",
"dayjs": "^1.11.13",
"dotenv": "^16.3.1",
"eventemitter2": "^6.4.9",
"express": "^4.21.0",
"express-async-errors": "^3.1.1",
"express-session": "^1.17.3",
"fluent-ffmpeg": "^2.1.3",
"form-data": "^4.0.0",
"hbs": "^4.2.0",
"js-yaml": "^4.1.0",
"jsonschema": "^1.4.1",
"jsonwebtoken": "^9.0.2",
"mime-types": "^2.1.35",
"mine": "^0.1.0",
"minio": "^8.0.0",
"multer": "^1.4.5-lts.1",
"node-cache": "^5.1.2",
"npm": "^10.8.3",
"pino": "^9.4.0",
"pino-pretty": "^11.0.0",
"qrcode": "^1.5.1",
"qrcode-terminal": "^0.12.0",
"sharp": "^0.33.5",
"swagger-ui-express": "^5.0.1",
"ulid": "^2.3.0",
"ws": "^8.18.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-session": "^1.17.10",
"@types/fluent-ffmpeg": "^2.1.26",
"@types/js-yaml": "^4.0.9",
"@types/jsonwebtoken": "^9.0.5",
"@types/mime-types": "^2.1.4",
"@types/multer": "^1.4.12",
"@types/node": "^22.8.6",
"@types/qrcode": "^1.5.5",
"@types/qrcode-terminal": "^0.12.2",
"@types/swagger-ui-express": "^4.1.6",
"@types/ws": "^8.5.10",
"@types/yamljs": "^0.2.34",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "8.47.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0",
"prisma": "^5.14.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}