-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.44 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "no-more-jockeys",
"version": "1.0.0",
"description": "Multi-LLM No More Jockeys game implementation",
"scripts": {
"dev": "npm run install:check && concurrently \"npm:dev:backend\" \"npm:dev:frontend\"",
"dev:backend": "cd backend && (test -d venv || python3 -m venv venv) && (. venv/bin/activate && pip install -q -r requirements.txt && uvicorn api.main:app --reload --port 8000)",
"dev:frontend": "cd frontend && (test -d node_modules || npm install) && npm run dev",
"dev:frontend-prod": "cd frontend && (test -d node_modules || npm install) && NEXT_PUBLIC_API_URL=https://backend-pu7w8cumu-set4.vercel.app npm run dev",
"install": "npm-run-all install:backend install:frontend",
"install:check": "npm run install:backend:check && npm run install:frontend:check",
"install:backend": "cd backend && python3 -m venv venv && . venv/bin/activate && pip install -r requirements.txt",
"install:backend:check": "cd backend && (test -d venv || npm run install:backend)",
"install:frontend": "cd frontend && npm install",
"install:frontend:check": "cd frontend && (test -d node_modules || npm install)",
"clean": "rm -rf backend/venv frontend/node_modules backend.log frontend.log"
},
"keywords": [
"ai",
"game",
"llm",
"anthropic",
"claude"
],
"author": "No More Jockeys Team",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2",
"npm-run-all": "^4.1.5"
}
}