-
Notifications
You must be signed in to change notification settings - Fork 251
Expand file tree
/
Copy pathpackage.json
More file actions
17 lines (17 loc) · 811 Bytes
/
package.json
File metadata and controls
17 lines (17 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"name": "hyper-alpha-arena",
"private": true,
"scripts": {
"dev": "concurrently \"pnpm run dev:backend\" \"pnpm run dev:frontend\"",
"dev:frontend": "cd frontend && pnpm dev",
"dev:backend": "cd backend && uv sync --quiet && uv run uvicorn main:app --reload --port 5611 --host 0.0.0.0",
"build": "pnpm run build:frontend && pnpm run build:backend",
"build:frontend": "cd frontend && pnpm build",
"build:backend": "cd backend && echo \"Backend build step not yet implemented\"",
"install:all": "pnpm install && cd backend && uv sync --quiet"
},
"devDependencies": {
"concurrently": "^8.2.0"
},
"packageManager": "pnpm@8.15.5+sha512.b051a32c7e695833b84926d3b29b8cca57254b589f0649d899c6e9d0edb670b91ec7e2a43459bae73759bb5ce619c3266f116bf931ce22d1ef1759a7e45aa96f"
}