-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 867 Bytes
/
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
{
"name": "telegram-to-github-bot",
"version": "1.0.0",
"type": "module",
"scripts": {
"test": "jest",
"start": "node --loader ts-node/esm src/index.ts",
"start:dev": "node --env-file=.env --loader ts-node/esm src/index.ts",
"podman:build": "podman build -t telegram-to-github-bot .",
"podman:run": "podman run --env-file .env telegram-to-github-bot"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@octokit/rest": "^21.0.0",
"debug": "^4.3.5",
"dotenv": "^16.4.5",
"telegraf": "^4.16.3",
"telegraf-test": "^1.2.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"zod": "^3.23.8"
},
"devDependencies": {
"ts-jest": "^29.1.5",
"jest": "^29.7.0",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9"
}
}