This commit introduces several new analysis documents, including Auto-Match Load Performance Analysis, Folder Picker Analysis, Monorepo Migration Summary, and various performance analysis documents. Additionally, the installation scripts are updated to reflect changes in backend service paths, ensuring proper integration with the new backend structure. These enhancements provide better documentation and streamline the setup process for users.
22 lines
824 B
JSON
22 lines
824 B
JSON
{
|
|
"name": "punimtag-monorepo",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "PunimTag monorepo - Photo management with facial recognition",
|
|
"scripts": {
|
|
"install:all": "npm install --prefix admin-frontend && npm install --prefix viewer-frontend",
|
|
"dev:admin": "npm run dev --prefix admin-frontend",
|
|
"dev:viewer": "npm run dev --prefix viewer-frontend",
|
|
"dev:backend": "source venv/bin/activate && export PYTHONPATH=$(pwd) && uvicorn backend.app:app --host 127.0.0.1 --port 8000",
|
|
"build:admin": "npm run build --prefix admin-frontend",
|
|
"build:viewer": "npm run build --prefix viewer-frontend",
|
|
"lint:admin": "npm run lint --prefix admin-frontend",
|
|
"lint:viewer": "npm run lint --prefix viewer-frontend"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"npm": ">=9.0.0"
|
|
}
|
|
}
|
|
|