-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
{
"name": "sumibot",
"version": "0.2.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/app.js",
"start": "node src/app.js",
"start:prod": "pm2 start src/app.js --name bot",
"clean:packages": "shx rm -rf node_modules package-lock.json",
"clean:session": "shx rm -rf auth_info_baileys baileys_store.json",
"lint": "eslint . --ext .js src/",
"lint:fix": "eslint . --ext .js src/ --fix"
},
"repository": "git+https://github.com/totallynotdavid/SumiBot.git",
"keywords": [
"bot",
"whatsapp"
],
"author": "David Duran <contacto@altmails.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/totallynotdavid/SumiBot/issues"
},
"homepage": "https://github.com/totallynotdavid/SumiBot#readme",
"private": false,
"devDependencies": {
"@adiwajshing/baileys": "github:WhiskeySockets/Baileys",
"@adiwajshing/keyed-db": "^0.2.4",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"axios": "^0.27.2",
"baileys-bottle": "^2.1.2",
"dotenv": "^16.1.4",
"eslint": "^8.43.0",
"fluent-ffmpeg": "^2.1.2",
"jimp": "^0.16.13",
"link-preview-js": "^3.0.4",
"node-fetch": "^3.3.1",
"nodemon": "^2.0.22",
"pino": "^8.14.1",
"qrcode-terminal": "^0.12.0",
"query-string": "^6.0.0",
"sharp": "^0.30.0",
"shx": "^0.3.4",
"wa-sticker-formatter": "^4.4.4"
},
"nodemonConfig": {
"ignore": [
"**/auth_info_baileys/**",
"baileys_store.json",
"**/media_storage/**"
],
"delay": 2500
},
"dependencies": {
"@supabase/supabase-js": "^2.26.0",
"@vitalets/google-translate-api": "^9.2.0",
"async-retry": "^1.3.3",
"node-cache": "^5.1.2"
}
}