TelegramRSS/package.json
Fabian Stamm 50006cb799
All checks were successful
continuous-integration/drone/push Build is passing
Updating Dependencies
2020-01-07 23:03:35 +01:00

36 lines
997 B
JSON

{
"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": {
"@types/dotenv": "^8.2.0",
"@types/html-entities": "^1.2.16",
"@types/lowdb": "^1.0.5",
"@types/node": "^13.1.4",
"@types/node-fetch": "^2.5.4",
"concurrently": "^5.0.2",
"nodemon": "^2.0.2",
"typescript": "^3.7.4"
},
"dependencies": {
"@hibas123/nodelogging": "^2.1.2",
"dotenv": "^8.2.0",
"html-entities": "^1.2.1",
"lowdb": "^1.0.0",
"node-fetch": "^2.6.0",
"rss-parser": "^3.7.3",
"ssl-root-cas": "^1.2.5",
"telegraf": "^3.35.0"
}
}