TelegramRSS/package.json

36 lines
997 B
JSON
Raw Normal View History

2019-05-15 01:01:18 +00:00
{
"name": "rss-telegram-bot",
"version": "1.0.0",
"main": "lib/index.js",
"author": "Fabian Stamm <dev@fabianstamm.de>",
"license": "MIT",
"private": true,
"scripts": {
"start": "node lib/index.js",
"build": "tsc",
"watch-ts": "tsc -w",
"watch-js": "nodemon -i db.json lib/index.js",
"watch": "concurrently npm:watch-*"
},
"devDependencies": {
2020-01-07 22:03:35 +00:00
"@types/dotenv": "^8.2.0",
2019-05-15 01:01:18 +00:00
"@types/html-entities": "^1.2.16",
"@types/lowdb": "^1.0.5",
2020-01-07 22:03:35 +00:00
"@types/node": "^13.1.4",
"@types/node-fetch": "^2.5.4",
"concurrently": "^5.0.2",
"nodemon": "^2.0.2",
"typescript": "^3.7.4"
2019-05-15 01:01:18 +00:00
},
"dependencies": {
2020-01-07 22:03:35 +00:00
"@hibas123/nodelogging": "^2.1.2",
"dotenv": "^8.2.0",
2019-05-15 01:01:18 +00:00
"html-entities": "^1.2.1",
"lowdb": "^1.0.0",
2020-01-07 22:03:35 +00:00
"node-fetch": "^2.6.0",
"rss-parser": "^3.7.3",
2019-05-15 01:01:18 +00:00
"ssl-root-cas": "^1.2.5",
2020-01-07 22:03:35 +00:00
"telegraf": "^3.35.0"
2019-05-15 01:01:18 +00:00
}
2020-01-07 22:03:26 +00:00
}