forked from bostrot/telegram-support-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.96 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": "telegram-support-bot",
"version": "3.0.0",
"description": "Telegram Support Bot",
"license": "GPL-3.0",
"author": "bostrot <[email protected]>",
"homepage": "https://bostrot.com",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bostrot/telegram-support-bot.git"
},
"bugs": {
"url": "https://github.com/bostrot/telegram-support-bot/issues"
},
"main": "build/src/index.js",
"scripts": {
"tsc": "tsc",
"dev": "ts-node-dev ./src/index.ts",
"prod": "tsc && cp -r ./src/addons/web/* ./build/src/addons/web && node ./build/src/index.js"
},
"engines": {
"node": ">=6.2.0"
},
"dependencies": {
"better-sqlite3": "^7.4.3",
"chalk": "^4.1.0",
"debug": "^4.3.1",
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"node-gyp": "^7.1.2",
"sandwich-stream": "^2.0.2",
"socket.io": "^4.2.0",
"telegraf": "^3.38.0",
"telegraf-experiments": "^1.1.0",
"telegraf-inline-menu": "^5.3.0",
"telegraf-session-sqlite": "^1.0.6",
"ts-node-dev": "^1.1.8",
"tsc": "^2.0.3",
"typescript": "^4.4.2",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.15.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"mocha": "^8.2.1",
"ts-node": "^9.1.0"
},
"keywords": [
"telegram-support-bot",
"support",
"telegraf",
"telegram",
"ticket",
"ticketing",
"ticketing system",
"telegram bot api",
"bot",
"botapi",
"bot framework"
]
}