-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.86 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.86 KB
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
88
89
90
91
92
93
{
"name": "cubeworlds",
"type": "module",
"version": "0.5.0",
"private": true,
"description": "Telegram bot for NFT",
"author": "Vladimir Babin <vovababin@gmail.com>",
"license": "MIT",
"imports": {
"#root/*": "./build/src/*"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"dev": "tsx watch src/main.ts",
"tunnel": "ngrok http --domain dominant-annually-lobster.ngrok-free.app 3000",
"xtunnel": "xtunnel http 3000",
"build:bot": "tsc --noEmit false",
"build:frontend": "npm --prefix src/frontend run build",
"build:all": "npm run build:bot && npm run build:frontend",
"update:bot": "npx npm-check-updates -u && npm install",
"update:frontend": "cd src/frontend && npx npm-check-updates -u && npm install",
"update:all": "npm run update:bot && npm run update:frontend",
"prepare": "npx husky",
"lint": "eslint . --ignore-pattern .github/",
"format": "prettier --write \"**/*.{ts,js,vue,json,css,scss,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,vue,json,css,scss,md}\"",
"start": "tsc && tsx ./src/main.ts",
"start:force": "tsx ./src/main.ts",
"typecheck": "tsc",
"test": "npm run test:backend",
"test:backend": "NODE_ENV=test node --import tsx --test $(find src/backend -name '*.test.ts')"
},
"dependencies": {
"@fastify/middie": "^9.1.0",
"@fastify/static": "^9.0.0",
"@grammyjs/auto-chat-action": "0.1.1",
"@grammyjs/auto-retry": "^2.0.2",
"@grammyjs/hydrate": "^1.6.0",
"@grammyjs/i18n": "1.1.2",
"@grammyjs/menu": "^1.3.1",
"@grammyjs/parse-mode": "2.2.1",
"@grammyjs/types": "3.24.0",
"@pinata/sdk": "^2.1.0",
"@telegram-apps/init-data-node": "^2.0.10",
"@ton/core": "^0.63.1",
"@ton/crypto": "^3.3.0",
"@ton/ton": "^16.2.2",
"@tonconnect/sdk": "^3.4.1",
"@typegoose/typegoose": "^12",
"@types/node-rsa": "^1.1.4",
"axios": "^1.13.5",
"callback-data": "1.1.1",
"chatgpt": "^5.2.5",
"dotenv": "17.2.4",
"fastify": "5.7.4",
"form-data": "^4.0.5",
"grammy": "1.40.0",
"grammy-guard": "0.5.0",
"hono": "^4.11.9",
"iso-639-1": "3.1.5",
"markdown-table-ts": "^1.0.3",
"mongoose": "^8.21.0",
"node-fetch": "^3.3.2",
"node-graceful-shutdown": "1.1.5",
"node-rsa": "^1.1.1",
"pino": "10.3.1",
"pino-pretty": "13.1.3",
"sharp": "^0.34.5",
"tonweb": "^0.0.66",
"tsx": "4.21.0",
"znv": "0.5.0"
},
"devDependencies": {
"@antfu/eslint-config": "^7.4.3",
"@types/node": "25.2.3",
"eslint": "^9",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.7.0",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "3.8.1",
"prettier-plugin-organize-imports": "4.3.0",
"tsc-watch": "7.2.0",
"typescript": "5.9.3",
"vite": "^7.3.1"
},
"lint-staged": {
"*.ts": "npm run lint"
}
}