Files
Nexus/package.json
T
Hartmut 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
fix(ci): clear PR #61 lint error + bump fast-uri/next over high-sev advisories
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>
2026-05-21 15:28:52 +02:00

69 lines
2.8 KiB
JSON

{
"name": "nexus",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "pnpm check:exports && pnpm check:imports",
"dev": "node ./scripts/run-from-workspace-root.mjs turbo dev",
"prebuild": "pnpm check:exports && pnpm check:imports",
"build": "node ./scripts/run-from-workspace-root.mjs turbo build",
"lint": "node ./scripts/run-from-workspace-root.mjs turbo lint",
"test": "node ./scripts/run-from-workspace-root.mjs turbo run test:unit --concurrency=2",
"test:unit": "node ./scripts/run-from-workspace-root.mjs turbo test:unit --concurrency=2",
"test:e2e": "node ./scripts/run-from-workspace-root.mjs turbo test:e2e",
"test:e2e:email": "pnpm --filter @nexus/web test:e2e:email",
"test:scripts": "node --test scripts/*.test.mjs",
"audit": "pnpm audit --audit-level=high",
"check:unused": "knip",
"check:architecture": "node ./scripts/check-architecture-guardrails.mjs",
"check:exports": "node ./scripts/check-workspace-exports.mjs",
"check:imports": "node ./scripts/check-workspace-imports.mjs",
"worktree:hygiene": "node ./scripts/worktree-hygiene.mjs",
"clean:next": "node ./scripts/clean-next-artifacts.mjs",
"db:doctor": "node ./scripts/db-doctor.mjs capakraken",
"db:prisma": "node ./scripts/prisma-with-env.mjs",
"db:push": "node ./scripts/prisma-with-env.mjs db push",
"db:migrate": "node ./scripts/prisma-with-env.mjs migrate dev",
"db:generate": "node ./scripts/prisma-with-env.mjs generate",
"db:validate": "node ./scripts/prisma-with-env.mjs validate",
"db:seed": "node ./scripts/with-env.mjs pnpm --filter @nexus/db db:seed",
"db:seed:export": "node ./scripts/export-dev-seed.mjs",
"db:seed:import": "node ./scripts/import-dev-seed.mjs",
"db:studio": "node ./scripts/with-env.mjs pnpm --filter @nexus/db db:studio",
"db:reset:dispo": "pnpm --filter @nexus/db db:reset:dispo",
"db:import:dispo": "pnpm --filter @nexus/db db:import:dispo",
"db:readiness:demand-assignment": "pnpm --filter @nexus/db db:readiness:demand-assignment",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"typecheck": "node ./scripts/run-from-workspace-root.mjs turbo typecheck",
"prepare": "husky"
},
"devDependencies": {
"@nexus/eslint-config": "workspace:*",
"@nexus/tsconfig": "workspace:*",
"husky": "^9.1.7",
"knip": "^6.3.1",
"lint-staged": "^16.4.0",
"prettier": "^3.3.3",
"turbo": "^2.3.3",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"pnpm": {
"overrides": {
"flatted": "^3.4.2",
"picomatch": "^4.0.4",
"lodash-es": "^4.18.0",
"brace-expansion@<2.0.2": ">=2.0.2",
"esbuild@<0.25.0": ">=0.25.0",
"fast-uri@<3.1.2": ">=3.1.2"
}
},
"packageManager": "pnpm@9.14.2",
"dependencies": {
"framer-motion": "^12.38.0"
}
}