Skip to content
Merged
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
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ jobs:
node-version: "22"
cache: "pnpm"

# API package tests run via `bun test` (see apps/api/package.json)
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest

- name: Install dependencies
run: pnpm install --frozen-lockfile

Expand Down
14 changes: 7 additions & 7 deletions apps/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@
"test": "bun test"
},
"dependencies": {
"@hono/node-server": "^1.19.4",
"@hono/node-server": "^1.19.11",
"@studykit/db": "workspace:*",
"bcrypt-ts": "^8.0.1",
"bullmq": "^5.58.7",
"hono": "^4.9.8",
"ioredis": "^5.9.2",
"postgres": "^3.4.7",
"zod": "^4.1.5"
"bullmq": "^5.71.0",
"hono": "^4.12.8",
"ioredis": "^5.10.1",
"postgres": "^3.4.8",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.9.2"
"typescript": "^5.9.3"
}
}
97 changes: 60 additions & 37 deletions apps/api/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions apps/executor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"zod": "^4.1.5"
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.9.2"
"typescript": "^5.9.3"
}
}
28 changes: 14 additions & 14 deletions apps/executor/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/executor/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ interface Payload {
executable?: boolean;
}

function castValue(value: string | number | null): unknown {
function castValue(value: unknown): unknown {
if (value === null || value === undefined) return null;
if (typeof value === "number") return value;
if (typeof value === "string") {
Expand Down
48 changes: 24 additions & 24 deletions apps/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"version": "0.1.0",
"private": true,
"engines": {
"node": "22.14.0"
"node": ">=22.14.0"
},
"packageManager": "pnpm@10.4.1",
"packageManager": "pnpm@10.32.1",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -22,42 +22,42 @@
"lint:fix": "eslint src --fix"
},
"dependencies": {
"framer-motion": "^11.18.2",
"i18next": "^25.8.14",
"framer-motion": "^12.38.0",
"i18next": "^25.8.20",
"react": "19.2.4",
"react-aria-components": "^1.15.1",
"react-aria-components": "^1.16.0",
"react-dom": "19.2.4",
"react-i18next": "^16.5.4",
"react-i18next": "^16.5.8",
"react-markdown": "10.1.0",
"react-router": "7.13.0",
"react-router-dom": "7.13.0",
"recharts": "^2.15.4",
"sonner": "^1.7.4",
"react-router": "7.13.1",
"react-router-dom": "7.13.1",
"recharts": "^3.8.0",
"sonner": "^2.0.7",
"web-vitals": "5.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.2.1",
"@tailwindcss/vite": "^4.2.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "22.19.11",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^10.0.2",
"@types/node": "25.5.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.0",
"@vitest/ui": "^4.1.0",
"eslint": "^10.0.3",
"eslint-plugin-react": "^7.37.5",
"jsdom": "^28.1.0",
"jsdom": "^29.0.1",
"prettier": "3.8.1",
"tailwindcss": "^4.2.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vitest": "^4.0.18"
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vite": "^8.0.1",
"vitest": "^4.1.0"
},
"browserslist": {
"production": [
Expand Down
Loading
Loading