generated from bot-base/telegram-bot-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.85 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": "powerkids-telegram-bot",
"version": "0.1.0",
"description": "Telegram bot for PowerKids Kindergarten",
"type": "module",
"imports": {
"#root/*": "./build/src/*"
},
"scripts": {
"lint": "eslint .",
"format": "eslint . --fix",
"typecheck": "tsc",
"build": "tsc --noEmit false",
"dev": "tsc-watch --onSuccess \"tsx ./src/main.ts\"",
"start": "tsc && tsx ./src/main.ts",
"start:force": "tsx ./src/main.ts",
"prepare": "pnpx husky install"
},
"author": "chuangcaleb <[email protected]>",
"license": "MIT",
"private": true,
"dependencies": {
"@directus/sdk": "^16.1.1",
"@grammyjs/auto-chat-action": "0.1.1",
"@grammyjs/conversations": "^1.2.0",
"@grammyjs/hydrate": "1.4.1",
"@grammyjs/i18n": "1.0.2",
"@grammyjs/parse-mode": "1.10.0",
"@grammyjs/types": "3.8.1",
"callback-data": "1.1.1",
"dotenv": "16.4.5",
"fastify": "4.28.1",
"fuse.js": "^7.0.0",
"grammy": "1.24.1",
"grammy-guard": "0.5.0",
"iso-639-1": "3.1.2",
"node-graceful-shutdown": "1.1.5",
"pino": "9.3.1",
"pino-pretty": "11.2.1",
"tsx": "4.16.2",
"znv": "0.4.0",
"zod": "3.23.8"
},
"devDependencies": {
"@types/node": "20.14.11",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-unicorn": "54.0.0",
"husky": "9.0.11",
"lint-staged": "15.2.7",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.0.0",
"tsc-watch": "6.2.0",
"typescript": "5.5.3"
},
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"*.ts": "pnpm lint"
}
}