Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions frontend/apps/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@
"valibot": "1.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@biomejs/biome": "2.4.13",
"@liam-hq/configs": "workspace:*",
"@storybook/nextjs": "9.1.15",
"@types/node": "22.18.11",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"eslint": "9.38.0",
"@types/node": "22.19.17",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"eslint": "9.39.4",
"msw": "2.11.6",
"typed-css-modules": "0.9.1",
"typescript": "5.9.3",
Expand Down
6 changes: 3 additions & 3 deletions frontend/apps/assets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"private": true,
"version": "0.1.0",
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@biomejs/biome": "2.4.13",
"@liam-hq/configs": "workspace:*",
"@types/fs-extra": "11.0.4",
"@types/node": "22.18.11",
"@types/node": "22.19.17",
"concurrently": "9.2.1",
"eslint": "9.38.0",
"eslint": "9.39.4",
"fs-extra": "11.3.2"
},
"scripts": {
Expand Down
10 changes: 5 additions & 5 deletions frontend/apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
"ts-pattern": "5.7.1"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@biomejs/biome": "2.4.13",
"@liam-hq/configs": "workspace:*",
"@tailwindcss/postcss": "4.1.16",
"@types/node": "22.18.11",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"eslint": "9.38.0",
"@types/node": "22.19.17",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"eslint": "9.39.4",
"postcss": "8.5.6",
"tailwindcss": "4.1.16",
"typescript": "5.9.3"
Expand Down
6 changes: 3 additions & 3 deletions frontend/internal-packages/agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
"valibot": "1.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@biomejs/biome": "2.4.13",
"@langchain/langgraph-checkpoint-validation": "0.1.1",
"@liam-hq/configs": "workspace:*",
"@types/node": "22.18.11",
"@types/node": "22.19.17",
"@types/uuid": "10.0.0",
"eslint": "9.38.0",
"eslint": "9.39.4",
"msw": "2.11.6",
"typescript": "5.9.3",
"vitest": "3.2.4",
Expand Down
12 changes: 6 additions & 6 deletions frontend/internal-packages/configs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
"./tsconfig/base.json": "./tsconfig/base.json"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@biomejs/biome": "2.4.13",
"@css-modules-kit/eslint-plugin": "0.3.0",
"@eslint/compat": "1.4.0",
"@eslint/css": "0.13.0",
"@eslint/compat": "1.4.1",
"@eslint/css": "0.14.1",
"@tsconfig/strictest": "2.0.6",
"@typescript-eslint/eslint-plugin": "8.46.1",
"@typescript-eslint/parser": "8.46.1",
"eslint": "9.38.0",
"@typescript-eslint/eslint-plugin": "8.59.0",
"@typescript-eslint/parser": "8.59.0",
"eslint": "9.39.4",
"eslint-plugin-unicorn": "58.0.0"
},
"files": [
Expand Down
4 changes: 2 additions & 2 deletions frontend/internal-packages/db/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"valibot": "1.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@biomejs/biome": "2.4.13",
"@liam-hq/configs": "workspace:*",
"eslint": "9.38.0",
"eslint": "9.39.4",
"supabase": "2.50.14",
"type-fest": "4.41.0",
"typescript": "5.9.3",
Expand Down
8 changes: 4 additions & 4 deletions frontend/internal-packages/e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"private": true,
"version": "0.0.0",
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@biomejs/biome": "2.4.13",
"@liam-hq/configs": "workspace:*",
"@playwright/test": "1.56.1",
"@types/node": "22.18.11",
"eslint": "9.38.0",
"@playwright/test": "1.59.1",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚩 Playwright major version jump (1.56 → 1.59) may need browser update

The @playwright/test bump from 1.56.1 to 1.59.1 is a notable jump. Playwright typically requires matching browser binaries for each version. The E2E CI pipeline likely runs npx playwright install which would handle this, but if the CI caches browsers, it may need cache invalidation. Not a code bug but worth verifying E2E tests pass in CI.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

"@types/node": "22.19.17",
"eslint": "9.39.4",
"typescript": "5.9.3"
},
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"style-dictionary": "4.4.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@biomejs/biome": "2.4.13",
"@liam-hq/configs": "workspace:*"
},
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions frontend/internal-packages/github/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
"valibot": "1.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@biomejs/biome": "2.4.13",
"@liam-hq/configs": "workspace:*",
"@types/node": "22.18.11",
"eslint": "9.38.0",
"@types/node": "22.19.17",
"eslint": "9.39.4",
"typescript": "5.9.3",
"vitest": "3.2.4"
},
Expand Down
4 changes: 2 additions & 2 deletions frontend/internal-packages/mcp-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"zod": "4.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@biomejs/biome": "2.4.13",
"@liam-hq/configs": "workspace:*",
"@types/node": "22.18.11",
"@types/node": "22.19.17",
"concurrently": "9.2.1",
"tsx": "4.20.6",
"typescript": "5.9.3"
Expand Down
6 changes: 3 additions & 3 deletions frontend/internal-packages/neverthrow/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
"valibot": "1.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@biomejs/biome": "2.4.13",
"@liam-hq/configs": "workspace:*",
"@types/node": "22.18.11",
"@types/node": "22.19.17",
"concurrently": "9.2.1",
"eslint": "9.38.0",
"eslint": "9.39.4",
"typescript": "5.9.3"
},
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions frontend/internal-packages/pglite-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"@pgsql/types": "15.1.1"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@biomejs/biome": "2.4.13",
"@liam-hq/configs": "workspace:*",
"eslint": "9.38.0",
"eslint": "9.39.4",
"typescript": "5.9.3",
"vitest": "3.2.4"
},
Expand Down
4 changes: 2 additions & 2 deletions frontend/internal-packages/schema-bench/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
"valibot": "1.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@biomejs/biome": "2.4.13",
"@liam-hq/configs": "workspace:*",
"eslint": "9.38.0",
"eslint": "9.39.4",
"vitest": "3.2.4"
},
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions frontend/internal-packages/security/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
"neverthrow": "8.2.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@biomejs/biome": "2.4.13",
"@liam-hq/configs": "workspace:*",
"@types/node": "22.18.11",
"eslint": "9.38.0",
"@types/node": "22.19.17",
"eslint": "9.39.4",
"typescript": "5.9.3"
},
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions frontend/internal-packages/storybook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"@storybook/addon-docs": "9.1.15",
"@storybook/addon-links": "9.1.15",
"@storybook/nextjs": "9.1.15",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"msw": "2.11.6",
"msw-storybook-addon": "2.0.6",
"storybook": "9.1.19",
Expand Down
10 changes: 5 additions & 5 deletions frontend/packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,16 @@
"yoctocolors": "2.1.2"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@biomejs/biome": "2.4.13",
"@liam-hq/configs": "workspace:*",
"@rollup/plugin-commonjs": "28.0.9",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-typescript": "12.3.0",
"@types/node": "22.18.11",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@types/node": "22.19.17",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "4.6.0",
"eslint": "9.38.0",
"eslint": "9.39.4",
"rollup": "4.52.5",
"rollup-plugin-execute": "1.1.1",
"typed-css-modules": "0.9.1",
Expand Down
6 changes: 3 additions & 3 deletions frontend/packages/erd-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@
"valibot": "1.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@biomejs/biome": "2.4.13",
"@liam-hq/configs": "workspace:*",
"@liam-hq/schema": "workspace:*",
"@storybook/nextjs": "9.1.15",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/pako": "2.0.4",
"@types/react": "19.2.2",
"@types/react": "19.2.14",
"@vitejs/plugin-react": "4.6.0",
"eslint": "9.38.0",
"eslint": "9.39.4",
"happy-dom": "20.0.0",
"typed-css-modules": "0.9.1",
"typescript": "5.9.3",
Expand Down
6 changes: 3 additions & 3 deletions frontend/packages/schema/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
"zod": "4.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@biomejs/biome": "2.4.13",
"@liam-hq/configs": "workspace:*",
"@pgsql/types": "15.1.1",
"@prisma/generator-helper": "6.8.2",
"@types/node": "22.18.11",
"eslint": "9.38.0",
"@types/node": "22.19.17",
"eslint": "9.39.4",
"json-refs": "3.0.15",
"json-schema-to-zod": "2.6.1",
"typescript": "5.9.3",
Expand Down
6 changes: 3 additions & 3 deletions frontend/packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@
"vaul": "1.1.2"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@biomejs/biome": "2.4.13",
"@liam-hq/configs": "workspace:*",
"@storybook/nextjs": "9.1.15",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/react": "19.2.2",
"@types/react": "19.2.14",
"@vitejs/plugin-react": "4.6.0",
"eslint": "9.38.0",
"eslint": "9.39.4",
"happy-dom": "20.0.0",
"typed-css-modules": "0.9.1",
"typescript": "5.9.3",
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
"@changesets/get-github-info": "0.6.0",
"@changesets/types": "6.1.0",
"@turbo/gen": "2.5.8",
"@types/node": "22.18.11",
"@types/node": "22.19.17",
"@vitest/coverage-v8": "3.2.4",
"concurrently": "9.2.1",
"knip": "5.66.0",
"knip": "5.88.1",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚩 Large knip version jump (5.66.0 → 5.88.1) may surface new lint findings

The knip dependency jumped from 5.66.0 to 5.88.1 — a 22-minor-version leap. knip detects unused dependencies, exports, and files. New minor versions frequently add new detection rules or change heuristics, which could cause the lint:knip CI step (knip --treat-config-hints-as-errors) to start failing on previously-passing code. This isn't a bug in the PR itself, but reviewers should confirm CI passes with this version before merging.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

"lefthook": "1.13.6",
"stylelint": "16.25.0",
"stylelint-config-recess-order": "7.4.0",
"stylelint-value-no-unknown-custom-properties": "6.0.1",
"syncpack": "13.0.4",
"turbo": "2.5.8",
"turbo": "2.9.6",
"typescript": "5.9.3",
"vercel": "41.7.8",
"vitest": "3.2.4"
Expand Down
Loading
Loading