-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 1.02 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
{
"name": "photo-processor",
"version": "1.0.0",
"description": "Race photo processing application with automatic bib number detection",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "cd frontend && python3 -m http.server 5173",
"dev:backend": "cd backend && source venv/bin/activate && python -m uvicorn main:app --reload --host 0.0.0.0 --port 8000",
"install:all": "npm install && cd backend && python3 -m venv venv && source venv/bin/activate && pip install -r requirements.txt",
"install:backend": "cd backend && source venv/bin/activate && pip install -r requirements.txt",
"start": "cd backend && source venv/bin/activate && python3 -m uvicorn main:app --host 0.0.0.0 --port 8000"
},
"keywords": ["photo", "processing", "race", "bib", "number", "detection", "opencv"],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=18.0.0",
"python": ">=3.8.0"
}
}