mirror of
https://github.com/srbhr/Resume-Matcher.git
synced 2026-01-15 12:05:34 +00:00
25 lines
1.2 KiB
JSON
25 lines
1.2 KiB
JSON
{
|
|
"name": "resume-matcher",
|
|
"version": "0.0.1",
|
|
"description": "Veridis Quo.",
|
|
"private": true,
|
|
"scripts": {
|
|
"install:frontend": "cd apps/frontend && npm install",
|
|
"install:backend": "cd apps/backend && uv venv && uv pip install .",
|
|
"install": "npm run install:frontend && npm run install:backend",
|
|
"dev:backend": "cd apps/backend && uv run uvicorn app.main:app --reload --port 8000 --timeout-keep-alive 300 --timeout-graceful-shutdown 300",
|
|
"dev:frontend": "cd apps/frontend && npm run dev",
|
|
"dev": "concurrently \"npm:dev:backend\" \"npm:dev:frontend\"",
|
|
"build:frontend": "cd apps/frontend && npm run build",
|
|
"build:backend": "cd apps/backend && uv run python -c \"print('Backend build complete')\"",
|
|
"build": "npm run build:frontend && npm run build:backend",
|
|
"start:backend": "cd apps/backend && uv run uvicorn app.main:app --port 8000",
|
|
"start:frontend": "cd apps/frontend && npm start",
|
|
"start": "concurrently \"npm:start:backend\" \"npm:start:frontend\"",
|
|
"lint:frontend": "cd apps/frontend && npm run lint",
|
|
"lint": "npm run lint:frontend"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^9.1.2"
|
|
}
|
|
} |