Files
pca-pijac/frontend/package.json
Marko Marković fc59e7e133 Run docker installs from the workspace root
Mounting only ./backend and ./frontend into /app made pnpm look for a
per-package lockfile (stale) and miss the workspace-root one entirely,
so --frozen-lockfile failed and root pnpm.onlyBuiltDependencies didn't
apply. Mount the whole repo at /repo, install with --filter from root,
and use the canonical workspace lockfile. Drop the per-package
onlyBuiltDependencies overrides — pnpm warns they're ignored outside
the workspace root.

Pin node:22-bookworm: node:lts now resolves to Node 24, for which
isolated-vm@5.0.3 has no prebuild and won't compile (V8 headers
require C++20).

Gitignore stray per-package lockfiles so they don't drift again.
2026-04-23 21:57:37 +04:00

52 lines
1.4 KiB
JSON

{
"name": "frontend",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.33.2",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"start": "vite preview --host 0.0.0.0 --port 3000",
"typecheck": "tsc -b --noEmit",
"format": "prettier --ignore-unknown --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@icons-pack/react-simple-icons": "13.13.0",
"@radix-ui/react-dropdown-menu": "2.1.16",
"@radix-ui/react-label": "2.1.8",
"@radix-ui/react-separator": "1.1.8",
"@radix-ui/react-slot": "1.2.4",
"@tanstack/react-query": "5.100.1",
"@tanstack/react-router": "1.168.23",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"iso-3166": "4.4.0",
"lucide-react": "1.9.0",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-helmet-async": "3.0.0",
"tailwind-merge": "3.5.0",
"tw-animate-css": "1.4.0"
},
"devDependencies": {
"@tailwindcss/vite": "4.2.4",
"@tanstack/router-plugin": "1.167.22",
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.1",
"prettier": "3.8.3",
"prettier-plugin-organize-imports": "4.3.0",
"tailwindcss": "4.2.4",
"typescript": "6.0.3",
"vite": "8.0.10"
}
}