-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "telegram-bot_node",
"version": "1.0.0",
"description": "Telegram Bot with TypeScript, Node.js, and Telegraf and deployment configuration for Heroku",
"main": "dist/app.js",
"engines": {
"node": "18.0",
"npm": "8.19"
},
"scripts": {
"build": "tsc",
"start": "node dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pirasalbe/Telegram-Bot_Node.js.git"
},
"author": "pirasalbe",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/pirasalbe/Telegram-Bot_Node.js/issues"
},
"homepage": "https://github.com/pirasalbe/Telegram-Bot_Node.js#readme",
"devDependencies": {
"@types/node": "^16.11.4",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.1.0",
"typescript": "^4.4.4"
},
"dependencies": {
"node-html-parser": "^5.0.0",
"telegraf": "^4.4.2",
"twitter-api-v2": "^1.7.0"
}
}