-
-
Notifications
You must be signed in to change notification settings - Fork 813
/
package.json
68 lines (68 loc) · 2.16 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
65
66
67
68
{
"name": "whatsapp-bot",
"version": "3.0.0",
"description": "Whatsapp Bot Multi Device - Node Js",
"main": "./dist/main.js",
"private": true,
"scripts": {
"build": "tsc --build",
"dev": "rimraf dist && tsc-watch --build ./tsconfig.json --onSuccess \"node --inspect ./dist/main.js\" --noClear",
"generateLang": "node -r ./bin/generateLang ./bin/generateLang.arugaz",
"generateLangV2": "node ./bin/generateLangV2",
"lint": "eslint . --ext .ts && prettier --write \"src/**/*.+(ts)\" \"languages/**/*.+(json)\"",
"start": "node ./dist/main.js",
"start:pm2": "pm2 start ecosystem.config.js && pm2 save && pm2 logs whatsappbot --raw"
},
"author": "arugaz",
"repository": {
"type": "git",
"url": "https://github.com/ArugaZ/whatsapp-bot.git"
},
"bugs": {
"url": "https://github.com/ArugaZ/whatsapp-bot/issues"
},
"homepage": "https://github.com/ArugaZ/whatsapp-bot",
"license": "GPL-3.0-or-later",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@arugaz/ai2d": "^1.0.1-z.9",
"@arugaz/collection": "^1.0.0-z.1",
"@arugaz/eventemitter": "^1.0.0-z.2",
"@arugaz/formatter": "^1.0.0-z.1",
"@arugaz/queue": "^1.0.1-z.1",
"@arugaz/translator": "^1.0.0-z.4",
"@hidden-finder/didyoumean": "^1.1.0",
"@prisma/client": "^5.3.0",
"awesome-phonenumber": "^6.1.0",
"axios": "^1.5.0",
"baileys": "github:arugaz/node-whatsapp",
"cfonts": "^3.1.1",
"cheerio": "^1.0.0-rc.12",
"croner": "^8.0.0",
"dotenv": "^16.0.3",
"fastify": "^4.12.0",
"form-data": "^4.0.0",
"jimp": "^0.16.1",
"link-preview-js": "^3.0.4",
"node-webpmux": "^3.1.3",
"qrcode": "^1.5.1"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/qrcode": "^1.5.0",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^2.8.1",
"prisma": "^5.3.0",
"rimraf": "^3.0.2",
"tsc-watch": "^6.0.0",
"typescript": "^5.3.3"
}
}