-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "whatsapp-blast",
"version": "1.5.5",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"dev": "nodemon --ext ts --exec ts-node src/server.ts",
"start": "node dist/server.js"
},
"keywords": [
"whatsapp",
"blast",
"api",
"nodejs",
"express",
"typescript"
],
"author": "Nestor Zamili",
"license": "ISC",
"description": "Robust and scalable WhatsApp API for sending messages in bulk",
"dependencies": {
"@prisma/client": "^6.4.0",
"@types/multer": "^1.4.12",
"bcryptjs": "^3.0.0",
"cloudinary": "^2.5.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.10.0",
"p-queue": "^8.1.0",
"qrcode-terminal": "^0.12.0",
"whatsapp-web.js": "^1.26.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.8",
"@types/morgan": "^1.9.9",
"@types/node": "^22.13.4",
"@types/nodemailer": "^6.4.17",
"@types/qrcode-terminal": "^0.12.2",
"nodemon": "^3.1.9",
"typescript": "^5.7.3"
}
}