-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 910 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 910 Bytes
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
{
"name": "telegram-bot-docker-quickstart",
"version": "1.0.0",
"description": "Template for a Telegram bot using Docker",
"type": "module",
"scripts": {
"lint": "eslint .",
"dev": "tsx src/index.ts",
"build": "node build.js",
"start": "node dist/index.js",
"docker-build": "docker-compose build",
"docker-up": "docker-compose up -d",
"docker-down": "docker-compose down"
},
"keywords": [
"telegram",
"bot",
"api",
"docker"
],
"author": "artshmelev",
"license": "MIT",
"private": true,
"dependencies": {
"@grammyjs/menu": "^1.3.0",
"dotenv": "^16.4.7",
"grammy": "^1.35.0"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/node": "^22.13.4",
"esbuild": "^0.25.0",
"eslint": "^9.20.1",
"globals": "^15.15.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0"
}
}