3da1b4242c
Feature 1.2: Python FastAPI microservice wrapping nba_api - GET /stats/season-avg, /stats/last-n, /stats/splits, /players/search - Redis caching (24hr/1hr/6hr/7day), 0.6s rate limiting, PRA derived stat - 27 Python tests passing Feature 1.4: Complete Supabase database schema - 6 tables: users, picks, scan_sessions, bets, outcomes, performance - RLS enabled on all tables with auth.uid() policies - 3 triggers: auto-create user, updated_at, scan count reset - 37 schema validation tests passing - Migration SQL ready, pending manual apply (WSL2 DNS blocker) Total: 92 tests (65 Node.js + 27 Python), all passing Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
40 lines
883 B
JSON
40 lines
883 B
JSON
{
|
|
"name": "betonblk",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"directories": {
|
|
"doc": "docs",
|
|
"test": "tests"
|
|
},
|
|
"scripts": {
|
|
"test": "jest --verbose",
|
|
"test:unit": "jest tests/unit --verbose",
|
|
"test:integration": "jest tests/integration --verbose"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/kev3109/betonblk.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"type": "commonjs",
|
|
"bugs": {
|
|
"url": "https://github.com/kev3109/betonblk/issues"
|
|
},
|
|
"homepage": "https://github.com/kev3109/betonblk#readme",
|
|
"dependencies": {
|
|
"@supabase/supabase-js": "^2.99.3",
|
|
"axios": "^1.13.6",
|
|
"dotenv": "^17.3.1",
|
|
"express": "^5.2.1",
|
|
"ioredis": "^5.10.1",
|
|
"postgres": "^3.4.8"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^30.3.0",
|
|
"supertest": "^7.2.2"
|
|
}
|
|
}
|