-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.35 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
{
"name": "whatsapp-web-api-rest",
"version": "1.0.0",
"description": "whatsapp-web-api-rest is an easy-to-use REST API wrapper for Baileys - Lightweight WhatsApp Web API built with NestJS. It allows you to interact with WhatsApp using endpoints to enable message sending, simulate actions, fetch contacts, and more.",
"author": "Cristian Yosafat Hernández Ruiz",
"keywords": [
"whatsapp",
"whatsapp API",
"nestjs"
],
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "nest build",
"dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/app.main",
"lint": "biome format --fix && biome check --fix --unsafe --max-diagnostics=500",
"commit": "sh commit.sh"
},
"dependencies": {
"@fastify/static": "7.0.4",
"@hapi/boom": "^10.0.1",
"@nestjs/common": "^10.4.15",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "^10.4.15",
"@nestjs/event-emitter": "^2.1.1",
"@nestjs/platform-fastify": "^10.4.15",
"@whiskeysockets/baileys": "^6.7.9",
"fastify": "^5.2.1",
"pino": "^9.6.0",
"qrcode-terminal": "^0.12.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"static@7.0.4": "link:fastify/static@7.0.4"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@nestjs/cli": "^10.4.9",
"@nestjs/swagger": "^8.1.0"
}
}