Files
Neon-Desk/package.json

78 lines
3.6 KiB
JSON

{
"name": "fiscal-frontend",
"version": "2.0.0",
"private": true,
"packageManager": "bun@1.3.5",
"scripts": {
"dev": "bun run scripts/dev.ts",
"dev:next": "bun --bun next dev --turbopack",
"generate": "bun run scripts/generate-taxonomy.ts",
"build:sidecar": "cargo build --manifest-path rust/Cargo.toml --release --bin fiscal-xbrl",
"build": "bun run generate && bun --bun next build --turbopack",
"bootstrap:prod": "bun run scripts/bootstrap-production.ts",
"check:sidecar": "cargo check --manifest-path rust/Cargo.toml",
"fmt": "cargo fmt --manifest-path rust/Cargo.toml --all --check && bun x prettier --check --ignore-unknown README.md package.json lib/server/db/index.test.ts lib/server/db/schema.ts lib/server/db/sqlite-schema-compat.ts lib/server/repos/filing-taxonomy.test.ts lib/server/repos/filing-taxonomy.ts lib/server/task-processors.outcomes.test.ts lib/server/task-processors.ts lib/server/taxonomy/engine.test.ts lib/server/taxonomy/parser-client.ts lib/server/taxonomy/parser-client.test.ts lib/server/taxonomy/types.ts scripts/e2e-prepare.test.ts test/bun-test-shim.ts test/vitest.setup.ts vitest.config.mts",
"typecheck": "bun x tsc --noEmit",
"validate:taxonomy-packs": "bun run scripts/validate-taxonomy-packs.ts",
"start": "bun --bun next start",
"lint": "bun run generate && bun run typecheck",
"e2e:prepare": "bun run scripts/e2e-prepare.ts",
"e2e:webserver": "bun run scripts/e2e-webserver.ts",
"workflow:setup": "workflow-postgres-setup",
"test": "bun x vitest run",
"backfill:filing-metrics": "bun run scripts/backfill-filing-metrics.ts",
"backfill:filing-statements": "bun run scripts/backfill-filing-statements.ts",
"backfill:search-index": "bun run scripts/backfill-search-index.ts",
"backfill:taxonomy-snapshots": "bun run scripts/backfill-taxonomy-snapshots.ts",
"compare:fiscal-ai": "bun run scripts/compare-fiscal-ai-statements.ts",
"repair:financial-ingestion-schema": "bun run scripts/repair-financial-ingestion-schema.ts",
"report:taxonomy-health": "bun run scripts/report-taxonomy-health.ts",
"db:generate": "bun x drizzle-kit generate",
"db:migrate": "bun x drizzle-kit migrate",
"test:e2e": "bun run scripts/e2e-run.ts",
"test:e2e:headed": "bun run scripts/e2e-run.ts --headed",
"test:e2e:install": "playwright install chromium",
"test:e2e:ui": "bun run scripts/e2e-run.ts --ui",
"test:e2e:workflow": "RUN_TASK_WORKFLOW_E2E=1 bun test lib/server/api/task-workflow-hybrid.e2e.test.ts",
"knip": "knip"
},
"dependencies": {
"@elysiajs/eden": "^1.4.8",
"@libsql/client": "^0.17.0",
"@tailwindcss/postcss": "^4.2.1",
"@tanstack/react-query": "^5.90.21",
"@workflow/world-postgres": "^4.1.0-beta.42",
"ai": "^6.0.116",
"better-auth": "^1.5.4",
"cheerio": "^1.2.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.41.0",
"elysia": "latest",
"html-to-image": "^1.11.13",
"lucide-react": "^0.575.0",
"next": "^16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"recharts": "^3.8.0",
"sonner": "^2.0.7",
"sqlite-vec": "^0.1.7-alpha.2",
"workflow": "^4.1.0-beta.63",
"zhipu-ai-provider": "^0.2.2"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"bun-types": "^1.3.10",
"drizzle-kit": "^0.31.9",
"knip": "^5.88.1",
"postcss": "^8.5.8",
"prettier": "^3.6.2",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}