24 lines
733 B
JSON
24 lines
733 B
JSON
{
|
|
"name": "music-app",
|
|
"private": true,
|
|
"workspaces": [
|
|
"shared",
|
|
"web",
|
|
"mobile"
|
|
],
|
|
"scripts": {
|
|
"dev:web": "npm run dev --workspace=web -- --host 0.0.0.0",
|
|
"dev:mobile": "npm run start --workspace=mobile",
|
|
"dev:backend": "cd backend && python -m uvicorn app.main:app --reload --host 0.0.0.0 --port 8000",
|
|
"dev": "concurrently \"npm run dev:web\" \"npm run dev:backend\"",
|
|
"build:web": "npm run build --workspace=web",
|
|
"build:mobile": "npm run build --workspace=mobile",
|
|
"lint": "npm run lint --workspaces --if-present",
|
|
"typecheck": "npm run typecheck --workspaces --if-present"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.59.1",
|
|
"concurrently": "^8.2.2"
|
|
}
|
|
}
|