-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "relaps-bot",
"version": "1.0.0",
"description": "Telegram bot that will work as script builder for relaps",
"type": "module",
"scripts": {
"build": "tsc --noEmit false",
"dev": "tsc-watch --onSuccess \"tsx ./src/app.ts\"",
"start": "node ./build/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicetomytyuk/relaps-bot.git"
},
"keywords": [
"telegram",
"relaps"
],
"author": "Ihor Mytyuk",
"license": "ISC",
"bugs": {
"url": "https://github.com/nicetomytyuk/relaps-bot/issues"
},
"homepage": "https://github.com/nicetomytyuk/relaps-bot#readme",
"dependencies": {
"@grammyjs/auto-retry": "^1.1.1",
"@grammyjs/conversations": "^1.2.0",
"@grammyjs/storage-free": "^2.4.2",
"@grammyjs/types": "^3.6.2",
"axios": "^1.6.8",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"fastify": "^4.26.2",
"grammy": "^1.22.4",
"node-graceful-shutdown": "^1.1.5",
"nodemon": "^3.1.0",
"znv": "^0.4.0"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.8",
"@types/express": "^4.17.21",
"@types/node": "^20.12.5",
"typescript": "^5.4.4"
}
}