generated from bot-base/telegram-bot-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
67 lines (67 loc) · 1.8 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
{
"name": "telegram-bot-template",
"version": "0.1.0",
"description": "Telegram bot starter template",
"type": "module",
"imports": {
"#root/*": "./build/src/*"
},
"scripts": {
"lint": "eslint .",
"format": "eslint . --fix",
"typecheck": "tsc",
"build": "tsc --noEmit false",
"dev": "tsc-watch --onSuccess \"tsx ./scripts/start.ts\"",
"start": "tsc && tsx ./scripts/start.ts",
"start:force": "tsx ./scripts/start.ts",
"prepare": "npx husky install"
},
"author": "deptyped <[email protected]>",
"license": "MIT",
"private": true,
"dependencies": {
"@grammyjs/auto-chat-action": "0.1.1",
"@grammyjs/hydrate": "1.3.1",
"@grammyjs/i18n": "1.0.1",
"@grammyjs/parse-mode": "1.7.1",
"@grammyjs/types": "3.1.3",
"callback-data": "1.0.2",
"dotenv": "16.3.1",
"fastify": "4.21.0",
"grammy": "1.17.2",
"grammy-guard": "0.5.0",
"iso-639-1": "2.1.15",
"node-graceful-shutdown": "1.1.5",
"pino": "8.15.0",
"pino-pretty": "10.2.0",
"qrcode": "1.5.3",
"tsx": "3.12.7",
"zod": "3.22.1"
},
"devDependencies": {
"@types/node": "20.5.0",
"@types/qrcode": "^1.5.1",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
"eslint": "8.47.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.6.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-unicorn": "48.0.1",
"husky": "8.0.3",
"lint-staged": "14.0.0",
"prettier": "3.0.2",
"prettier-plugin-organize-imports": "3.2.3",
"tsc-watch": "6.0.4",
"typescript": "5.1.6"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"lint-staged": {
"*.ts": "npm run lint"
}
}