forked from salman0ansari/whatsapp-api-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.78 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
{
"name": "whatsapp-api-nodejs",
"version": "3.0.8",
"description": "whatsapp-api-nodejs is builton 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",
"configure-husky": "npx husky install && npx husky add .husky/pre-commit \"npx --no-install lint-staged\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"git add"
],
"*.{html,css,less,ejs}": [
"prettier --write",
"git add"
]
},
"repository": "[email protected]:salman0ansari/whatsapp-api-nodejs.git",
"author": "Mohd Salman Ansari <[email protected]>",
"license": "MIT",
"dependencies": {
"@adiwajshing/baileys": "^4.4.0",
"axios": "^1.2.2",
"dotenv": "^16.0.3",
"ejs": "^3.1.7",
"express": "^4.21.0",
"express-exception-handler": "^1.3.111",
"link-preview-js": "^3.0.5",
"mongodb": "^6.9.0",
"mongoose": "^8.6.3",
"multer": "^1.4.5-lts.1",
"pino": "^8.15.1",
"qrcode": "^1.5.1",
"sharp": "^0.30.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.0.4",
"mocha": "^10.6.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"supertest": "^6.3.1"
}
}