2c2f4417c6
CI / Architecture Guardrails (pull_request) Successful in 2m44s
CI / Assistant Split Regression (pull_request) Successful in 4m29s
CI / Lint (pull_request) Successful in 4m59s
CI / Typecheck (pull_request) Successful in 5m9s
CI / Unit Tests (pull_request) Successful in 6m24s
CI / Build (pull_request) Successful in 4m37s
CI / E2E Tests (pull_request) Successful in 5m35s
CI / Fresh-Linux Docker Deploy (pull_request) Failing after 7m29s
CI / Release Images (pull_request) Has been skipped
CI on PR #61 surfaced three issues. Two are real and fixed here; the third was an act-runner flake (actions/setup-node container cleanup race) that resolves on retrigger. 1. Lint error in apps/web/src/components/allocations/AllocationModal.tsx The `// eslint-disable-next-line @typescript-eslint/no-explicit-any` sat one line above the `as any` cast, so it suppressed nothing and eslint flagged it as an unused directive. Moved the comment to the line immediately above the cast. 2. pnpm audit --audit-level=high reported 9 high-severity findings, all transitive through two packages: - fast-uri <=3.1.1 (GHSA-q3j6-qgpj-74h6, host confusion via percent-encoded authority delimiters) — pinned to >=3.1.2 via pnpm.overrides since it's only reachable through @sentry/webpack- plugin > webpack > schema-utils > ajv > fast-uri - next 15.5.15 — bumped to ^15.5.16 (patched range starts here) Quality gates green: typecheck (7/7), test:unit (7/7), lint (0 errors). Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
76 lines
2.3 KiB
JSON
76 lines
2.3 KiB
JSON
{
|
|
"name": "@nexus/web",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev -p 3100",
|
|
"build": "next build",
|
|
"start": "next start -p 3100",
|
|
"lint": "eslint src/",
|
|
"typecheck": "tsc --project tsconfig.typecheck.json --noEmit",
|
|
"test:unit": "vitest run",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:email": "playwright test --config playwright.dev.config.ts e2e/dev-system/invite-flow.spec.ts e2e/dev-system/password-reset.spec.ts"
|
|
},
|
|
"dependencies": {
|
|
"@nexus/api": "workspace:*",
|
|
"@nexus/application": "workspace:*",
|
|
"@nexus/db": "workspace:*",
|
|
"@nexus/engine": "workspace:*",
|
|
"@nexus/shared": "workspace:*",
|
|
"@dnd-kit/core": "^6.3.1",
|
|
"@dnd-kit/sortable": "^10.0.0",
|
|
"@dnd-kit/utilities": "^3.2.2",
|
|
"@node-rs/argon2": "^2.0.2",
|
|
"@react-pdf/renderer": "^4.3.2",
|
|
"@sentry/nextjs": "^10.45.0",
|
|
"@tanstack/react-query": "^5.62.16",
|
|
"@tanstack/react-virtual": "^3.13.21",
|
|
"@trpc/client": "^11.0.0",
|
|
"@trpc/react-query": "^11.0.0",
|
|
"@trpc/server": "^11.0.0",
|
|
"@types/qrcode": "^1.5.6",
|
|
"clsx": "^2.1.1",
|
|
"dompurify": "^3.4.0",
|
|
"exceljs": "^4.4.0",
|
|
"framer-motion": "^12.38.0",
|
|
"next": "^15.5.16",
|
|
"next-auth": "^5.0.0-beta.25",
|
|
"otpauth": "^9.5.0",
|
|
"qrcode": "^1.5.4",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"react-force-graph-3d": "^1.29.1",
|
|
"react-grid-layout": "^2.2.2",
|
|
"react-resizable": "^3.0.5",
|
|
"recharts": "^3.7.0",
|
|
"tailwind-merge": "^2.6.0",
|
|
"three": "^0.183.2",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@next/bundle-analyzer": "^16.2.3",
|
|
"@axe-core/playwright": "^4.11.1",
|
|
"@nexus/eslint-config": "workspace:*",
|
|
"@nexus/tsconfig": "workspace:*",
|
|
"@playwright/test": "^1.49.1",
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/react": "^16.3.2",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@types/dompurify": "^3.2.0",
|
|
"@types/node": "^22.10.2",
|
|
"@types/react": "^19.0.6",
|
|
"@types/react-dom": "^19.0.3",
|
|
"@types/react-grid-layout": "^2.1.0",
|
|
"@types/three": "^0.183.1",
|
|
"@vitest/coverage-v8": "^2.1.9",
|
|
"autoprefixer": "^10.4.20",
|
|
"eslint": "^10.2.0",
|
|
"jsdom": "^29.0.2",
|
|
"postcss": "^8.4.49",
|
|
"tailwindcss": "^3.4.17",
|
|
"typescript": "^5.6.3",
|
|
"vitest": "^2.1.9"
|
|
}
|
|
}
|