21 lines
617 B
JSON
21 lines
617 B
JSON
{
|
|
"name": "music-repo",
|
|
"private": true,
|
|
"type": "module",
|
|
"license": "UNLICENSED",
|
|
"scripts": {
|
|
"backend:dev": "bun run --watch packages/backend/src/app.ts",
|
|
"docker:build": "docker build -t music-repo .",
|
|
"docker:run": "docker run --init --publish 3000:3000 --rm music-repo",
|
|
"frontend:build": "pnpm --filter frontend exec vite build",
|
|
"frontend:dev": "pnpm --filter frontend exec vite --open"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "catalog:",
|
|
"@stylistic/eslint-plugin": "catalog:",
|
|
"eslint-plugin-react-hooks": "catalog:",
|
|
"typescript": "catalog:",
|
|
"typescript-eslint": "catalog:"
|
|
}
|
|
}
|