-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 719 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 719 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
{
"name": "github-spy-telegram-bot",
"version": "1.0.0",
"description": "telegram bot to run github reports",
"main": "dist/app.js",
"repository": "git@github.com:YashKumarVerma/github-spy-telegram-bot.git",
"author": "Yash Kumar Verma <yk.verma2000@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node ./dist/app.js",
"dev": "nodemon"
},
"private": false,
"dependencies": {
"dotenv": "^8.2.0",
"js-beautify": "^1.13.0",
"node-telegram-bot-api": "^0.50.0"
},
"devDependencies": {
"@types/js-beautify": "^1.11.0",
"@types/node-telegram-bot-api": "^0.50.3",
"nodemon": "^2.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}