← back to Nationalrealestate
package.json
53 lines
{
"name": "nationalrealestate",
"version": "0.16.1",
"private": true,
"type": "module",
"description": "USRealEstate — national U.S. residential market explorer. Free-data v1 (Redfin Data Center, Zillow Research, Census ACS, FHFA). Internal analyst tool behind basic auth.",
"scripts": {
"server": "tsx src/server/index.ts",
"migrate": "tsx db/migrate.ts",
"seed:regions": "tsx src/ingest/regions_seed.ts",
"ingest:zillow": "tsx src/ingest/zillow_research.ts",
"ingest:redfin": "tsx src/ingest/redfin_tracker.ts",
"ingest:acs": "tsx src/ingest/census_acs.ts",
"ingest:fhfa": "tsx src/ingest/fhfa_hpi.ts",
"ingest:brokers": "tsx src/ingest/brokers/engine.ts",
"ingest:listings": "tsx src/ingest/listings/engine.ts",
"discover:firms": "tsx src/enrich/firm_website_discovery.ts",
"crawl:firms": "tsx src/crawl/firm_front_page.ts",
"derive": "tsx src/ingest/derive_metrics.ts",
"score": "tsx src/score/opportunity.ts",
"refresh": "tsx src/jobs/refresh_all.ts",
"alerts": "tsx src/jobs/alerts_check.ts",
"ingest:nri": "tsx src/ingest/fema_nri.ts",
"ingest:fmr": "tsx src/ingest/hud_fmr.ts",
"ingest:parcels": "tsx src/ingest/parcels/engine.ts",
"test:provenance": "tsx src/ingest/parcels/provenance_selftest.ts",
"ingest:commercial": "tsx src/ingest/commercial/engine.ts",
"ingest:commercial-briefs": "tsx src/ingest/commercial/briefs.ts",
"ingest:places": "tsx src/ingest/places/seed.ts",
"loop": "tsx src/jobs/hourly_loop.ts",
"ingest:zipcounty": "tsx src/ingest/zip_county.ts"
},
"dependencies": {
"better-sqlite3": "^13.0.1",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"pg": "^8.13.1",
"playwright": "^1.59.1",
"tsx": "^4.19.2",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"@types/pg": "^8.11.10",
"typescript": "^5.7.2"
},
"allowScripts": {
"esbuild@0.28.1": true,
"better-sqlite3@13.0.1": true
}
}