-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 803 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 803 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
{
"name": "steam-benchmark-backend",
"version": "1.0.0",
"description": "Steam Library Benchmark Backend API",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"scrape:cyri": "node scrape-cyri.js --file cyri-urls.txt --out cyri-data.json",
"crawl:cyri": "node crawl-cyri.js --seed https://www.systemrequirementslab.com/cyri --out cyri-urls.txt --max 5000 --depth 3 --state crawl-state.json --rate-ms 700 --save-every 25",
"crawl+scrape": "npm run crawl:cyri && npm run scrape:cyri"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"axios": "^1.6.0"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"keywords": ["steam", "benchmark", "api", "express"],
"author": "RoCoKo",
"license": "MIT"
}