-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 921 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 921 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
{
"name": "flyrank-be-polite-scraper",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"scrape": "node scripts/runScrape.js",
"test": "jest --detectOpenHandles --forceExit",
"lint": "eslint ."
},
"author": "Muhammad Ashhadullah Zaheer",
"license": "ISC",
"description": "FlyRank BE assignment: a polite scraper (fetch → parse → extract → clean → structure) with robots.txt compliance, rate limiting, and identification.",
"dependencies": {
"axios": "^1.18.1",
"cheerio": "^1.2.0",
"compression": "^1.8.1",
"cors": "^2.8.6",
"dotenv": "^16.6.1",
"express": "^5.2.1",
"express-rate-limit": "^7.5.1",
"helmet": "^8.3.0",
"robots-parser": "^3.0.1"
},
"devDependencies": {
"eslint": "^9.39.5",
"jest": "^29.7.0",
"nodemon": "^3.1.14",
"supertest": "^7.2.2"
}
}