-
-
Notifications
You must be signed in to change notification settings - Fork 152
/
package.json
73 lines (73 loc) · 2.15 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
73
{
"name": "telegram-support-bot",
"version": "4.0.0",
"description": "Telegram Support Bot",
"license": "GPL-3.0",
"author": "bostrot <[email protected]>",
"homepage": "https://botspace.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": "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": {
"@grammyjs/transformer-throttler": "^1.2.1",
"better-sqlite3": "^8.0.1",
"chalk": "^5.2.0",
"debug": "^4.3.4",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"grammy": "^1.12.0",
"node-fetch": ">=3.3.0",
"node-gyp": "^9.3.1",
"sandwich-stream": "^2.0.2",
"socket.io": "^4.5.4",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4",
"yaml": "^2.1.3"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"chai": "^4.3.7",
"eslint": "^8.30.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0",
"esm": "^3.2.25",
"mocha": "^10.2.0",
"ts-node": "^10.9.1"
},
"keywords": [
"telegram-support-bot",
"support",
"telegraf",
"telegram",
"ticket",
"ticketing",
"ticketing system",
"telegram bot api",
"bot",
"botapi",
"bot framework"
]
}