-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.63 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
{
"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": "nest start",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/app.main",
"lint": "biome format --fix && biome check --fix --unsafe --max-diagnostics=500",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"commit": "sh commit.sh",
"prepare": "husky install"
},
"dependencies": {
"@fastify/static": "7.0.4",
"@hapi/boom": "^10.0.1",
"@nestjs/common": "^10.4.6",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "^10.4.6",
"@nestjs/event-emitter": "^2.1.1",
"@nestjs/platform-fastify": "^10.4.6",
"@whiskeysockets/baileys": "^6.7.9",
"fastify": "^5.0.0",
"pino": "^9.5.0",
"qrcode-terminal": "^0.12.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@nestjs/cli": "^10.4.5",
"@nestjs/swagger": "^8.0.1",
"husky": "^9.1.6"
}
}