forked from odditive/heroku-node-telegram-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1002 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
{
"name": "lifexp-bot",
"version": "1.0.0",
"description": "Gamified Journalling Chatbot",
"main": "index.js",
"scripts": {
"start": "tsc && node index.js",
"postinstall": "tsc",
"cron": "node built/src/scheduled.js",
"deploy": "git push heroku master",
"lint": "eslint .",
"set_webhook": "export $(cat .env | xargs) && curl https://api.telegram.org/bot$TOKEN/setWebhook?url=$HEROKU_URL$TOKEN"
},
"author": "xlzior",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.0",
"dotenv": "^4.0.0",
"emoji-tree": "^1.1.2",
"express": "^4.13.4",
"luxon": "^1.27.0",
"node-telegram-bot-api": "^0.30.0",
"pg": "^8.6.0"
},
"devDependencies": {
"@types/luxon": "^1.27.1",
"@types/node": "^16.3.2",
"@types/node-telegram-bot-api": "^0.51.4",
"@types/pg": "^8.6.1",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.28.0",
"typescript": "^4.3.5"
}
}