Files
t.leonards ae33874ae0
Deploy to Dev Server / deploy (push) Has been cancelled
initial commit
2026-03-26 16:10:45 +01:00

26 lines
701 B
JSON

{
"name": "lub-project",
"version": "1.0.0",
"private": true,
"workspaces": [
"apps/frontend",
"apps/backend"
],
"scripts": {
"dev:f": "npm run start -w apps/frontend -- --host 0.0.0.0",
"dev:b": "npm run start:dev -w apps/backend -- --host 0.0.0.0",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend -- --host 0.0.0.0\"",
"build:frontend": "npm run build -w apps/frontend",
"build:backend": "npm run build -w apps/backend",
"build:all": "npm run build:backend && npm run build:frontend"
},
"dependencies": {
"rxjs": "~7.8.0"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"overrides": {
"rxjs": "~7.8.0"
}
}