-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (37 loc) · 905 Bytes
/
package.json
File metadata and controls
38 lines (37 loc) · 905 Bytes
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
37
38
{
"name": "simple-rss-monitor",
"version": "1.0.0",
"description": "A Node.js application to monitor RSS feeds and send notifications.",
"main": "server/app.js",
"scripts": {
"start": "node server/app.js",
"dev": "nodemon server/app.js",
"knex:migrate:make": "knex migrate:make -x js",
"knex:migrate:latest": "knex migrate:latest",
"knex:seed:make": "knex seed:make -x js",
"knex:seed:run": "knex seed:run"
},
"keywords": [
"rss",
"monitor",
"discord",
"telegram",
"notifier"
],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.2",
"discord.js": "^14.15.3",
"express": "^4.19.2",
"html-to-text": "^9.0.5",
"knex": "^3.1.0",
"node-telegram-bot-api": "^0.66.0",
"rss-parser": "^3.13.0",
"socket.io": "^4.7.5",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"nodemon": "^3.1.0"
}
}