-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
71 lines (71 loc) · 2.2 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
69
70
71
{
"name": "whatsapp-bot-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"heroku-prebuild": "npm install --only=dev",
"build": "rimraf dist && tsc",
"start": "npm run build && node dist/index.js",
"dev": "ts-node src/index.ts",
"start-prod": "npm run build && node dist/index.js",
"db": "ts-node ./src/utils/dbTables.ts",
"lint": "npx eslint .",
"lint-fix": "npx eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shubhamrawat5/whatsapp-bot-ts.git"
},
"author": "Shubham Rawat",
"license": "ISC",
"bugs": {
"url": "https://github.com/Shubhamrawat5/whatsapp-bot-ts/issues"
},
"homepage": "https://github.com/Shubhamrawat5/whatsapp-bot-ts#readme",
"dependencies": {
"@adiwajshing/keyed-db": "^0.2.4",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@google/generative-ai": "^0.21.0",
"@hapi/boom": "^10.0.1",
"@whiskeysockets/baileys": "^6.7.9",
"adm-zip": "^0.5.9",
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"g-i-s": "github:jacktheboss220/g-i-s",
"googlethis": "^1.7.1",
"insta-fetcher": "^1.3.25",
"node-cache": "^5.1.2",
"node-cron": "^3.0.3",
"node-telegram-bot-api": "^0.61.0",
"pg": "^8.7.3",
"qrcode": "^1.5.3",
"qrcode-terminal": "^0.12.0",
"rimraf": "^5.0.1",
"rss-parser": "^3.12.0",
"string-similarity": "^4.0.4",
"ts-node": "^10.9.1",
"wa-sticker-formatter": "^4.4.4",
"ytdl": "^1.4.1",
"ytdl-core": "github:khlevon/node-ytdl-core#v4.11.3-patch.1"
},
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/express": "^4.17.17",
"@types/fluent-ffmpeg": "^2.1.21",
"@types/node-cron": "^3.0.11",
"@types/node-telegram-bot-api": "^0.61.6",
"@types/pg": "^8.10.1",
"@types/qrcode": "^1.5.5",
"@types/string-similarity": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"typescript": "^5.0.4"
}
}