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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Multi-stage Dockerfile for YTT - All-in-one Container
# Stage 1: Build the frontend
FROM node:20-alpine AS frontend-builder
FROM node:24-alpine@sha256:a0b9bf06e4e6193cf7a0f58816cc935ff8c2a908f81e6f1a95432d679c54fbfd AS frontend-builder

WORKDIR /app/frontend

# Copy package files (using pnpm)
COPY frontend/package.json frontend/pnpm-lock.yaml ./
COPY frontend/package.json frontend/pnpm-lock.yaml frontend/pnpm-workspace.yaml ./

# Install pnpm and dependencies
RUN npm install -g pnpm && pnpm install --frozen-lockfile
Expand Down
8 changes: 4 additions & 4 deletions backend/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest==7.4.4
pytest-asyncio==0.21.1
httpx==0.26.0
rich==13.7.0
pytest==9.1.1
pytest-asyncio==1.4.0
httpx==0.28.1
rich==15.0.0
26 changes: 13 additions & 13 deletions backend/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
fastapi==0.109.0
uvicorn[standard]==0.27.0
pydantic==2.5.3
pydantic-settings==2.1.0
httpx==0.26.0
python-multipart==0.0.6
aiofiles==23.2.1
python-docx==1.1.0
pdfplumber==0.10.3
PyYAML==6.0.1
chardet==5.2.0
redis==5.0.1
fastapi==0.138.1
uvicorn[standard]==0.49.0
pydantic==2.13.4
pydantic-settings==2.14.2
httpx==0.28.1
python-multipart==0.0.32
aiofiles==25.1.0
python-docx==1.2.0
pdfplumber==0.11.10
PyYAML==6.0.3
chardet==7.4.3
redis==8.0.1
langdetect==1.0.9
rich==13.7.0
rich==15.0.0
yt-dlp>=2024.1.0
16 changes: 8 additions & 8 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,26 @@
},
"devDependencies": {
"@eslint/compat": "^2.0.1",
"@eslint/js": "^9.39.2",
"@eslint/js": "^10.0.0",
"@sveltejs/adapter-auto": "^7.0.0",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.50.1",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@types/node": "^22",
"eslint": "^9.39.2",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@types/node": "^24.0.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.14.0",
"globals": "^17.1.0",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.4.1",
"prettier-plugin-svelte": "^4.0.0",
"svelte": "^5.48.2",
"svelte-check": "^4.3.5",
"typescript": "^5.9.3",
"typescript": "^6.0.0",
"typescript-eslint": "^8.53.1",
"vite": "^7.3.1"
"vite": "^8.0.0"
},
"dependencies": {
"carbon-components-svelte": "^0.99.1",
"carbon-components-svelte": "^0.109.0",
"carbon-icons-svelte": "^13.8.0",
"carbon-preprocess-svelte": "^0.11.23"
}
Expand Down
Loading