music-web/package.json
Jarian Cottingham bc40a19c49 Initial commit: web frontend
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.
2026-08-21 18:44:05 +00:00

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"
}
}