Skip to content

Commit 48b589f

Browse files
chore: update dependencies (#317)
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Razvan Marescu <[email protected]>
1 parent fbca698 commit 48b589f

File tree

3 files changed

+1045
-762
lines changed

3 files changed

+1045
-762
lines changed

package.json

+19-21
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,10 @@
1414
"db:cleanup": "tsx lib/db/cleanup.ts",
1515
"stripe:webhooks": "stripe listen --forward-to http://localhost:3000/api/stripe/webhook",
1616
"setup": "npx tsx lib/setup.ts",
17-
1817
"cli:build": "cd packages/shortest && pnpm build",
1918
"cli:dev": "cd packages/shortest && pnpm dev",
2019
"cli:test": "cd packages/shortest && pnpm shortest",
2120
"cli:typecheck": "tsc -p packages/shortest/tsconfig.json --noEmit",
22-
2321
"nextjs:typecheck": "tsc --noEmit --incremental",
2422
"nextjs:test:e2e": "pnpm shortest",
2523
"lint": "eslint .",
@@ -30,24 +28,24 @@
3028
"@ai-sdk/openai": "^0.0.61",
3129
"@clerk/nextjs": "^5.6.0",
3230
"@faker-js/faker": "^8.4.1",
33-
"@octokit/rest": "^21.0.2",
34-
"@playwright/test": "^1.48.1",
31+
"@octokit/rest": "^21.1.0",
32+
"@playwright/test": "^1.50.1",
3533
"@radix-ui/react-avatar": "^1.1.0",
3634
"@radix-ui/react-checkbox": "^1.1.1",
37-
"@radix-ui/react-dialog": "^1.1.1",
38-
"@radix-ui/react-dropdown-menu": "^2.1.1",
35+
"@radix-ui/react-dialog": "^1.1.5",
36+
"@radix-ui/react-dropdown-menu": "^2.1.5",
3937
"@radix-ui/react-icons": "^1.3.0",
4038
"@radix-ui/react-label": "^2.1.0",
41-
"@radix-ui/react-popover": "^1.1.1",
39+
"@radix-ui/react-popover": "^1.1.5",
4240
"@radix-ui/react-radio-group": "^1.2.0",
4341
"@radix-ui/react-scroll-area": "^1.1.0",
4442
"@radix-ui/react-separator": "^1.1.0",
4543
"@radix-ui/react-slot": "^1.1.0",
46-
"@radix-ui/react-toast": "^1.2.1",
44+
"@radix-ui/react-toast": "^1.2.5",
4745
"@types/bcryptjs": "^2.4.6",
48-
"@types/node": "^22.5.4",
49-
"@types/react": "^19.0.1",
50-
"@types/react-dom": "^19.0.2",
46+
"@types/node": "^22.13.1",
47+
"@types/react": "^19.0.8",
48+
"@types/react-dom": "^19.0.3",
5149
"@vercel/postgres": "^0.10.0",
5250
"adm-zip": "^0.5.16",
5351
"ai": "^3.4.0",
@@ -64,7 +62,7 @@
6462
"lucide-react": "^0.439.0",
6563
"minimatch": "^10.0.1",
6664
"next": "15.0.0-canary.152",
67-
"postcss": "^8.4.45",
65+
"postcss": "^8.5.1",
6866
"postgres": "^3.4.4",
6967
"react": "19.0.0-rc-7771d3a7-20240827",
7068
"react-beautiful-dnd": "^13.1.1",
@@ -73,32 +71,32 @@
7371
"run": "^1.5.0",
7472
"server-only": "^0.0.1",
7573
"stripe": "^16.10.0",
76-
"swr": "^2.2.5",
74+
"swr": "^2.3.1",
7775
"tailwind-merge": "^2.5.2",
7876
"tailwindcss": "^3.4.11",
7977
"tailwindcss-animate": "^1.0.7",
8078
"tailwindcss-react-aria-components": "1.1.5",
81-
"typescript": "^5.6.2",
79+
"typescript": "^5.7.3",
8280
"vaul": "^0.9.4",
8381
"vite-tsconfig-paths": "^5.0.1",
8482
"zod": "^3.23.8"
8583
},
8684
"devDependencies": {
8785
"@antiwork/shortest": "workspace:*",
88-
"@clerk/testing": "^1.3.32",
86+
"@clerk/testing": "^1.4.20",
8987
"@testing-library/jest-dom": "^6.5.0",
90-
"@testing-library/react": "^16.0.1",
88+
"@testing-library/react": "^16.2.0",
9189
"@types/adm-zip": "^0.5.5",
9290
"@types/js-yaml": "^4.0.9",
93-
"@typescript-eslint/eslint-plugin": "^8.18.2",
94-
"@typescript-eslint/parser": "^8.18.2",
91+
"@typescript-eslint/eslint-plugin": "^8.23.0",
92+
"@typescript-eslint/parser": "^8.23.0",
9593
"@vitejs/plugin-react": "^4.3.1",
9694
"dotenv": "^8.0.0",
97-
"eslint": "^9.17.0",
95+
"eslint": "^9.19.0",
9896
"eslint-config-prettier": "^9.1.0",
9997
"eslint-plugin-import": "^2.31.0",
100-
"eslint-plugin-prettier": "^5.2.1",
101-
"eslint-plugin-react": "^7.37.3",
98+
"eslint-plugin-prettier": "^5.2.3",
99+
"eslint-plugin-react": "^7.37.4",
102100
"eslint-plugin-react-hooks": "^5.1.0",
103101
"happy-dom": "^15.7.4",
104102
"js-yaml": "^4.1.0",

packages/shortest/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -43,25 +43,25 @@
4343
},
4444
"devDependencies": {
4545
"@types/jest": "^29.5.14",
46-
"@types/node": "^20.11.24",
46+
"@types/node": "^20.17.17",
4747
"package-manager-detector": "0.2.9",
4848
"rimraf": "^6.0.1",
49-
"tsup": "^8.3.5",
49+
"tsup": "^8.3.6",
5050
"tsx": "^4.19.2",
5151
"typescript": "~5.6.3",
52-
"vitest": "^1.6.0",
52+
"vitest": "^1.6.1",
5353
"zod": "^3.24.1"
5454
},
5555
"engines": {
5656
"node": ">=18"
5757
},
5858
"peerDependencies": {
59-
"@anthropic-ai/sdk": "0.32.0",
59+
"@anthropic-ai/sdk": "^0.32.0",
6060
"dotenv": "^16.4.5",
6161
"esbuild": "^0.20.1",
6262
"expect": "^29.7.0",
6363
"mailosaur": "^8.7.0",
64-
"playwright": "^1.48.2"
64+
"playwright": "^1.50.1"
6565
},
6666
"author": "Anti-Work",
6767
"license": "MIT",

0 commit comments

Comments
 (0)