TelegramRSS/package.json

36 lines
999 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": {
"@types/dotenv": "^4.0.3",
"@types/html-entities": "^1.2.16",
"@types/lowdb": "^1.0.5",
"@types/node": "^10.7.0",
"@types/node-fetch": "^2.1.2",
"concurrently": "^4.1.0",
"nodemon": "^1.18.3",
"typescript": "^3.0.1"
},
"dependencies": {
"@hibas123/nodelogging": "^1.3.12",
"dotenv": "^6.0.0",
"html-entities": "^1.2.1",
"lowdb": "^1.0.0",
"node-fetch": "^2.2.0",
"rss-parser": "^3.4.2",
"ssl-root-cas": "^1.2.5",
"telegraf": "^3.24.1"
}
2020-01-07 22:03:26 +00:00
}