-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 786 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 786 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
{
"name": "big-tech-news",
"version": "2.0.0",
"description": "Daily Big Tech news digest aggregator with weekly and monthly summaries",
"main": "scraper/index.js",
"scripts": {
"scrape": "node scraper/index.js --daily",
"scrape:daily": "node scraper/index.js --daily",
"scrape:weekly": "node scraper/index.js --weekly",
"scrape:monthly": "node scraper/index.js --monthly",
"scrape:backfill": "node scraper/index.js --backfill",
"build": "node build/generate.js",
"dev": "npx serve public -p 3000"
},
"dependencies": {
"axios": "^1.6.7",
"cheerio": "^1.0.0-rc.12",
"date-fns": "^3.3.1",
"dotenv": "^16.4.1",
"rss-parser": "^3.13.0",
"marked": "^12.0.0"
},
"devDependencies": {},
"author": "",
"license": "MIT"
}