-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.09 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.09 KB
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
{
"name": "backend",
"version": "3.0.0",
"description": "Node.js API for intelligent scraping of eBay products, offers, and sellers, with centralized API key validation, concurrency control, optimized caching, multi-domain search, and automated testing with full coverage. Includes robust endpoints for querying products, details, offers, server status, and seller status, plus intelligent fallback between subdomains and comprehensive error handling.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node --max-old-space-size=1024 --expose-gc index.js",
"dev": "nodemon --inspect index.js",
"test": "jest"
},
"keywords": [],
"author": "Augusto Machado Ramos",
"license": "Apache-2.0",
"dependencies": {
"axios": "^1.11.0",
"axios-retry": "^4.5.0",
"cheerio": "^1.1.2",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"node-cache": "^5.1.2",
"p-limit": "^7.1.1",
"uuid": "^12.0.0"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"babel-jest": "^30.1.2",
"jest": "^30.1.3",
"nodemon": "^3.1.10"
}
}