generated from bot-base/telegram-bot-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.5 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "cubeworlds",
"version": "0.1.0",
"description": "Telegram bot for NFT",
"type": "module",
"imports": {
"#root/*": "./build/src/*"
},
"scripts": {
"tunnel": "ngrok http --domain dominant-annually-lobster.ngrok-free.app 80",
"lint": "eslint .",
"format": "eslint . --fix",
"typecheck": "tsc",
"build": "tsc --noEmit false",
"dev": "npm --prefix src/frontend run build && tsc-watch --onSuccess \"tsx ./src/main.ts\"",
"start": "tsc && tsx ./src/main.ts",
"start:force": "tsx ./src/main.ts",
"prepare": "npx husky install",
"update": "npx npm-check-updates -u && cd src/frontend && npx npm-check-updates -u"
},
"author": "Vladimir Babin <[email protected]>",
"license": "MIT",
"private": true,
"dependencies": {
"@fastify/static": "^8.0.1",
"@grammyjs/auto-chat-action": "0.1.1",
"@grammyjs/auto-retry": "^2.0.2",
"@grammyjs/hydrate": "1.4.1",
"@grammyjs/i18n": "1.1.2",
"@grammyjs/menu": "^1.2.2",
"@grammyjs/parse-mode": "1.10.0",
"@grammyjs/types": "3.14.0",
"@pinata/sdk": "^2.1.0",
"@telegram-apps/init-data-node": "^1.0.4",
"@ton/core": "^0.58.1",
"@ton/crypto": "^3.3.0",
"@ton/ton": "^15.0.0",
"@typegoose/typegoose": "^12.7.0",
"@types/node-rsa": "^1.1.4",
"axios": "^1.7.7",
"callback-data": "1.1.1",
"chatgpt": "^5.2.5",
"dotenv": "16.4.5",
"fastify": "5.0.0",
"form-data": "^4.0.0",
"grammy": "1.30.0",
"grammy-guard": "0.5.0",
"iso-639-1": "3.1.3",
"markdown-table-ts": "^1.0.3",
"mongoose": "~8.6.3",
"node-fetch": "^3.3.2",
"node-graceful-shutdown": "1.1.5",
"node-rsa": "^1.1.1",
"pino": "9.4.0",
"pino-pretty": "11.2.2",
"sharp": "^0.33.5",
"tonweb": "^0.0.66",
"tsx": "4.19.1",
"znv": "0.4.0",
"zod": "3.23.8"
},
"devDependencies": {
"@types/node": "22.7.1",
"@typescript-eslint/eslint-plugin": "8.7.0",
"@typescript-eslint/parser": "8.7.0",
"eslint": "^8",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-unicorn": "55.0.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.1.0",
"tsc-watch": "6.2.0",
"typescript": "5.6.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"lint-staged": {
"*.ts": "npm run lint"
}
}