-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.64 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
{
"name": "h0-archon",
"version": "1.0.0",
"private": true,
"description": "Archon-on-Vercel+AWS — agentic finance intelligence for SMBs. Fuses bank movement, sales goals, purchases, and payroll controls into an auditable monthly close.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "node --import tsx --test --test-concurrency=1 tests/pipeline.test.ts tests/store.test.ts tests/db.test.ts tests/insights.test.ts tests/extraction.test.ts tests/upload.test.ts tests/demo-periods.test.ts tests/demo-ledger.test.ts tests/dashboard-vm.test.ts tests/opensearch.test.ts tests/recompute.test.ts tests/tamper.test.ts eval/tests/metrics.test.ts",
"test:e2e": "playwright test",
"coverage": "node --import tsx --test --experimental-test-coverage --test-concurrency=1 tests/pipeline.test.ts tests/store.test.ts tests/db.test.ts tests/insights.test.ts tests/extraction.test.ts tests/upload.test.ts tests/demo-periods.test.ts tests/demo-ledger.test.ts tests/dashboard-vm.test.ts tests/opensearch.test.ts tests/recompute.test.ts tests/tamper.test.ts eval/tests/metrics.test.ts",
"ci": "npm run typecheck && npm test && npm run build && npm run pipeline",
"pipeline": "tsx scripts/run-pipeline.ts",
"eval": "tsx eval/evaluate.ts",
"eval:gen": "python eval/generate_corpus.py --n 6 --out eval/corpus/sample --seed 1 --kind sample && python eval/generate_corpus.py --n 40 --out eval/corpus/full --seed 7 --kind full",
"smoke:live": "tsx scripts/live-smoke.ts",
"db:seed": "tsx scripts/seed.ts"
},
"dependencies": {
"@aws-sdk/client-bedrock-runtime": "^3.1075.0",
"@aws-sdk/client-dynamodb": "^3.1075.0",
"@aws-sdk/credential-provider-node": "^3.972.58",
"@aws-sdk/lib-dynamodb": "^3.1075.0",
"@opensearch-project/opensearch": "^3.6.0",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"driver.js": "^1.6.0",
"lucide-react": "^1.22.0",
"motion": "^12.42.0",
"mupdf": "^1.27.0",
"next": "^16.2.9",
"next-auth": "^5.0.0-beta.31",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"recharts": "2.15.4",
"shadcn": "^4.8.0",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@playwright/test": "^1.51.1",
"@tailwindcss/postcss": "^4.3.1",
"@types/node": "20.14.10",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"tailwindcss": "^4.3.1",
"tsx": "4.16.2",
"typescript": "5.5.3"
},
"overrides": {
"postcss": "8.5.10"
}
}