forked from chrishubert/whatsapp-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 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
53
54
{
"name": "whatsapp-web-api",
"version": "1.0.0",
"description": "REST API wrapper for whatsapp-web.js",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "jest --runInBand",
"swagger": "node swagger.js"
},
"dependencies": {
"axios": "^1.6.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.11.2",
"qr-image": "^3.2.0",
"qrcode-terminal": "^0.12.0",
"swagger-ui-express": "^4.6.3",
"whatsapp-web.js": "1.23.1-alpha.5"
},
"devDependencies": {
"eslint": "^8.38.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"supertest": "^6.3.3",
"swagger-autogen": "^2.23.7"
},
"keywords": [
"whatsapp",
"whatsapp-web",
"api",
"wrapper",
"rest",
"express",
"axios"
],
"author": "Christophe Hubert",
"license": "MIT",
"engines": {
"node": ">=14.17.0"
},
"repository": {
"type": "git",
"url": "https://github.com/chrishubert/whatsapp-web-api.git"
},
"bugs": {
"url": "https://github.com/chrishubert/whatsapp-web-api/issues"
},
"homepage": "https://github.com/chrishubert/whatsapp-web-api",
"private": true
}