-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.78 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "react-example",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"predev": "node scripts/update-btc-data.mjs && node scripts/update-market-data.mjs && npm run update:derivatives && npm run build:features && npm run write:runtime-summaries",
"dev": "vite --port=3000 --host=0.0.0.0",
"build": "vite build",
"preview": "vite preview",
"clean": "rm -rf dist",
"analyze:phase-signal": "tsx scripts/analyze-phase-signal.ts",
"analyze:cross-market": "tsx scripts/analyze-cross-market-context.ts",
"analyze:heatmap-model": "tsx scripts/analyze-heatmap-model.ts",
"research:btc-candidates": "tsx scripts/research-btc-candidates.ts",
"backtest": "tsx scripts/backtest-forecast.ts",
"backtest:report-only": "tsx scripts/backtest-forecast.ts --report-only",
"refit:powerlaw": "tsx scripts/refit-power-law.ts",
"backtest:market": "tsx scripts/backtest-market-forecast.ts",
"calibrate:intervals": "tsx scripts/calibrate-intervals.ts",
"update:onchain": "node scripts/update-onchain-data.mjs",
"validate:onchain": "node scripts/validate-onchain-data.mjs",
"build:features": "tsx scripts/build-feature-table.ts",
"validate:features": "tsx scripts/validate-feature-table.ts",
"update:derivatives": "node scripts/update-derivatives-data.mjs",
"update:etf-flow": "node scripts/update-etf-flow-data.mjs",
"update:macro": "node scripts/update-macro-data.mjs",
"update:market-data": "node scripts/update-market-data.mjs",
"validate:regime-data": "node scripts/validate-regime-data.mjs",
"write:runtime-summaries": "tsx scripts/write-runtime-summaries.ts",
"check:freshness": "tsx scripts/check-data-freshness.ts",
"validate:data": "npm run validate:mvrv && npm run validate:onchain && npm run validate:features && npm run validate:regime-data",
"reports:refresh": "node scripts/reports-refresh.mjs",
"validate:mvrv": "node scripts/validate-mvrv-data.mjs",
"lint": "tsc --noEmit",
"deploy": "bash -c 'set -a; source .env; set +a; node scripts/update-btc-data.mjs && vite build && wrangler pages deploy dist --branch main'"
},
"dependencies": {
"@google/genai": "^1.29.0",
"@tailwindcss/vite": "^4.1.14",
"@vitejs/plugin-react": "^5.0.4",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"lightweight-charts": "^5.1.0",
"lucide-react": "^0.546.0",
"motion": "^12.23.24",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^3.8.0",
"tailwind-merge": "^3.5.0",
"vite": "^6.2.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.14.0",
"autoprefixer": "^10.4.21",
"tailwindcss": "^4.1.14",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"wrangler": "^4.77.0"
}
}