-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
36 lines (36 loc) · 876 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
34
35
36
{
"name": "main_server_bot",
"version": "1.0.0",
"description": "A telegram bot to push emails when they come.",
"main": "app/index.ts",
"scripts": {
"test": "ts-node app",
"start": "node build",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BLUE-DEVIL1134/MailServerBot.git"
},
"keywords": [
"email",
"nodejs",
"telegram"
],
"author": "Akash Pattnaik <[email protected]>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/BLUE-DEVIL1134/MailServerBot/issues"
},
"homepage": "https://github.com/BLUE-DEVIL1134/MailServerBot#readme",
"dependencies": {
"chalk": "^4.1.1",
"mail-notifier": "^0.5.0",
"telegraf": "^4.4.1",
"typescript": "^4.3.5"
},
"devDependencies": {
"@types/node": "^16.4.3",
"ts-node": "^10.1.0"
}
}