CoolFace
Apppublic

hardbanrecords/Metadata-Engine

sourceHugging Faceotherupdated 8mo agoView on Hugging Face
0likes
package.json16 linesDownload Raw Back to root
1{2  "name": "music-metadata-engine-unified",3  "version": "1.0.0",4  "description": "Unified Music Metadata Engine with Frontend and Backend",5  "scripts": {6    "start": "concurrently \"npm run start:frontend\" \"npm run start:backend\"",7    "start:frontend": "cd frontend && npm run dev",8    "start:backend": "cd backend && ..\\venv\\Scripts\\python.exe -m uvicorn app.main:app --reload --port 8080",9    "install:all": "npm install && cd frontend && npm install && cd backend && pip install -r requirements.txt",10    "build:frontend": "cd frontend && npm run build"11  },12  "devDependencies": {13    "concurrently": "^8.2.2"14  }15}16