-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.26 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
65
66
67
68
69
70
{
"name": "sosoalpha",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"smoke:sosovalue": "tsx scripts/smoke-test-sosovalue.ts",
"capture:landing": "node scripts/capture-landing-screenshots.mjs",
"inspect:sosovalue": "tsx scripts/inspect-sosovalue.ts",
"inspect:etf": "tsx scripts/inspect-etf-endpoints.ts",
"inspect:etf-final": "tsx scripts/inspect-etf-final.ts",
"test:universe": "tsx scripts/test-universe.ts",
"test:db": "tsx scripts/test-db.ts",
"test:classifier": "tsx scripts/test-classifier.ts",
"ingest:news": "tsx scripts/test-ingest-news.ts",
"db:stats": "tsx scripts/db-stats.ts",
"ingest:all": "tsx scripts/test-ingest-all.ts",
"inspect:indices": "tsx scripts/inspect-indices.ts",
"test:impact": "tsx scripts/test-impact.ts",
"inspect:sodex": "tsx scripts/inspect-sodex.ts",
"test:sodex": "tsx scripts/test-sodex.ts",
"reclassify": "tsx scripts/reclassify.ts",
"debug:signals": "tsx scripts/debug-signals.ts",
"backfill:news": "tsx scripts/backfill-news.ts",
"debug:impact": "tsx scripts/debug-impact.ts",
"debug:dates": "tsx scripts/debug-dates.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.95.0",
"@libsql/client": "^0.17.3",
"@rainbow-me/rainbowkit": "^2.2.11",
"@tanstack/react-query": "^5.100.14",
"@xenova/transformers": "^2.17.2",
"better-sqlite3": "^12.9.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"gsap": "^3.15.0",
"lucide-react": "^1.14.0",
"next": "16.2.5",
"react": "19.2.4",
"react-dom": "19.2.4",
"recharts": "^3.8.1",
"tailwind-merge": "^3.5.0",
"viem": "^2.52.0",
"wagmi": "^2.19.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/ui": "^4.1.5",
"dotenv": "^17.4.2",
"eslint": "^9",
"eslint-config-next": "16.2.5",
"playwright": "^1.60.0",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^4.1.5"
}
}