-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.29 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
{
"name": "wwebjs-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.7.8",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1",
"qr-image": "^3.2.0",
"qrcode-terminal": "^0.12.0",
"swagger-ui-express": "^5.0.1",
"whatsapp-web.js": "^1.26.1-alpha.3"
},
"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",
"wwebjs",
"api",
"wrapper",
"rest",
"express",
"axios"
],
"author": {
"name": "Anton Voylenko",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/avoylenko/wwebjs-api.git"
},
"bugs": {
"url": "https://github.com/avoylenko/wwebjs-api/issues"
},
"homepage": "https://github.com/avoylenko/wwebjs-api"
}