forked from caioagiani/whatsapp-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.14 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
{
"name": "wpp-bot",
"main": "dist/index.js",
"version": "0.2.0",
"keywords": [
"whatsapp",
"bot"
],
"license": "MIT",
"description": "WhatsApp Bot for 76Telecom",
"repository": {
"type": "git",
"url": "https://github.com/caioagiani"
},
"author": {
"name": "Caio Agiani",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/caioagiani"
},
"contributors": [
{
"name": "Pedro S. Lopez",
"email": "[email protected]",
"url": "https://github.com/pedroslopez"
},
{
"name": "Ranielly Ferreira",
"email": "[email protected]",
"url": "https://github.com/raniellyferreira"
}
],
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon -r dotenv/config dist/index.js",
"compile": "tsc -w"
},
"dependencies": {
"puppeteer": "^3.0.4",
"qrcode-terminal": "^0.12.0",
"request": "^2.88.2",
"whatsapp-web.js": "^1.5.1"
},
"devDependencies": {
"@types/puppeteer": "^2.1.0",
"@types/request": "^2.48.5",
"dotenv": "^8.2.0",
"nodemon": "^2.0.4",
"typescript-eslint-parser": "^22.0.0"
}
}