-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.48 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.48 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "openfront-scraper-functions",
"version": "2.1.0",
"description": "OpenFront lobby scraper with PostgreSQL - Azure Functions + Express API architecture",
"main": "index.js",
"scripts": {
"start": "node api/index.js",
"start:api": "node api/index.js",
"start:watch": "nodemon api/index.js",
"migrate": "node scripts/migrate.js",
"migrate:reset": "node scripts/migrate.js reset",
"import:azure": "node scripts/import-azure-snapshots.js import",
"verify:import": "node scripts/import-azure-snapshots.js verify",
"job": "node scripts/run-job.js",
"job:scrape": "node scripts/run-job.js scrape",
"job:extract": "node scripts/run-job.js extract",
"job:api": "node scripts/run-job.js api",
"job:api:5": "node scripts/run-job.js api 5",
"job:process-ffa": "node scripts/run-job.js process-ffa",
"job:process-team": "node scripts/run-job.js process-team",
"jobs:all": "npm run job:scrape && npm run job:extract && npm run job:api && npm run job:process-ffa"
},
"engines": {
"node": ">=16.x"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"node-cron": "^4.2.0",
"node-fetch": "^3.3.2",
"pg": "^8.16.3"
},
"devDependencies": {
"@types/pg": "^8.10.9",
"nodemon": "^3.0.1"
},
"keywords": [
"azure",
"functions",
"openfront",
"scraper",
"postgresql",
"portable",
"express",
"api"
],
"author": "floriankilian",
"license": "MIT"
}