-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
64 lines (64 loc) · 1.52 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
61
62
63
64
{
"name": "chatbot-automation",
"version": "2.0.0",
"description": "Omnichanel chatbot microservice implementation",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "standard",
"standard-fix": "standard --fix"
},
"repository": "https://github.com/virtualcapitalofamerica/whatsapp-bot",
"keywords": [
"Node.js",
"quick",
"start",
"whatsapp",
"chatbot"
],
"author": "GitHub",
"license": "CC0-1.0",
"dependencies": {
"aes-js": "^3.1.1",
"atob": ">=2.1.0",
"aws-sdk": "^2.566.0",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"body-parser": "latest",
"colors": "latest",
"compression": "^1.7.2",
"config": "^1.30.0",
"cookie-parser": "^1.4.3",
"cors": "latest",
"datatables.net": "^1.10.21",
"datatables.net-bs4": "^1.10.21",
"exceljs": "^3.3.1",
"express": "latest",
"firebase": "^9.8.2",
"firebase-admin": "^10.2.0",
"helmet": "^3.21.2",
"html-to-text": "^5.1.1",
"jsonwebtoken": "latest",
"maxmind": "^4.0.0",
"moment": "^2.24.0",
"multer": "latest",
"nodemailer": "^6.7.3",
"select2": "4.0.3",
"select2-bootstrap-theme": "0.1.0-beta.10",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"whatsapp-cloud-api.js": "^1.1.3"
},
"devDependencies": {
"standard": "^17.0.0"
},
"standard": {
"ignore": [
"/node_modules/**/*.js",
"/static/private/js/**/*.js",
"/static/public/js/**/*.js",
"/src/views/*",
"/ui-template/*"
]
}
}