React web app for the self-hosted music streaming project, carved out from the music-app monorepo. Uses @music-app/shared for shared types and utilities.
20 lines
470 B
JSON
20 lines
470 B
JSON
{
|
|
"name": "music-web",
|
|
"private": true,
|
|
"workspaces": [
|
|
"shared",
|
|
"web"
|
|
],
|
|
"scripts": {
|
|
"dev": "npm run dev:web",
|
|
"dev:web": "npm run dev --workspace=web -- --host 0.0.0.0",
|
|
"build": "npm run build --workspace=web",
|
|
"lint": "npm run lint --workspaces --if-present",
|
|
"typecheck": "npm run typecheck --workspaces --if-present",
|
|
"test:e2e": "npx playwright test"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.59.1"
|
|
}
|
|
}
|