forked from bostrot/telegram-support-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.17 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
72
{
"name": "telegram-support-bot",
"version": "4.0.0",
"description": "Telegram Support Bot",
"license": "GPL-3.0",
"author": "bostrot <eric@bostrot.com>",
"homepage": "https://botspace.bostrot.com",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/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": "ts-node ./src/index.ts",
"build": "tsc",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'test/**/*.ts' --exit"
},
"engines": {
"node": ">=6.2.0"
},
"dependencies": {
"better-sqlite3": "^7.5.3",
"chalk": "^5.0.1",
"debug": "^4.3.4",
"express": "^4.18.1",
"express-rate-limit": "^6.4.0",
"grammy": "^1.9.0",
"node-fetch": ">=3.2.10",
"node-gyp": "^9.0.0",
"sandwich-stream": "^2.0.2",
"socket.io": "^4.5.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4",
"yaml": "^2.1.1"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"chai": "^4.3.6",
"eslint": "^8.18.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^4.1.0",
"esm": "^3.2.25",
"mocha": "^10.0.0",
"ts-node": "^10.8.1"
},
"keywords": [
"telegram-support-bot",
"support",
"telegraf",
"telegram",
"ticket",
"ticketing",
"ticketing system",
"telegram bot api",
"bot",
"botapi",
"bot framework"
]
}