forked from salman0ansari/whatsapp-api-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.31 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-api-nodejs",
"version": "3.0.5",
"description": "whatsapp-api-nodejs is built on top of Baileys-MD.",
"main": "server.js",
"scripts": {
"start": "node src/server.js",
"dev": "./node_modules/nodemon/bin/nodemon.js",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"test": "mocha tests/*.test.js --exit"
},
"repository": "[email protected]:salman0ansari/whatsapp-api-nodejs.git",
"author": "Mohd Salman Ansari <[email protected]>",
"license": "MIT",
"dependencies": {
"@adiwajshing/baileys": "^4.2.0",
"axios": "^0.27.2",
"dotenv": "^16.0.0",
"ejs": "^3.1.7",
"express": "^4.18.1",
"express-exception-handler": "^1.3.5",
"link-preview-js": "^2.1.15",
"mongodb": "^4.7.0",
"mongoose": "^6.3.3",
"multer": "^1.4.5-lts.1",
"pino": "^8.0.0",
"qrcode": "^1.5.0",
"sharp": "^0.30.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"supertest": "^6.2.3"
}
}