Added packageManager

This commit is contained in:
PxlLoewe
2025-05-27 17:47:40 -07:00
parent 571ddfba85
commit 2209372303
5 changed files with 10 additions and 2 deletions

View File

@@ -8,6 +8,7 @@
"start": "tsx index.ts --transpile-only",
"build": "tsc"
},
"packageManager": "pnpm@10.11.0",
"devDependencies": {
"@repo/db": "*",
"@repo/typescript-config": "*",

View File

@@ -3,6 +3,7 @@
"version": "0.1.0",
"type": "module",
"private": true,
"packageManager": "pnpm@10.11.0",
"scripts": {
"dev": "next dev --turbopack -p 3001",
"build": "next build",

View File

@@ -7,6 +7,7 @@
"dev": "nodemon --signal SIGINT",
"start": "tsx index.ts --transpile-only"
},
"packageManager": "pnpm@10.11.0",
"devDependencies": {
"@repo/db": "*",
"@repo/typescript-config": "*",
@@ -29,6 +30,5 @@
"react": "^19.0.0",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.4"
},
"packageManager": "pnpm@10.11.0"
}
}

View File

@@ -2,6 +2,7 @@
"name": "hub",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.11.0",
"scripts": {
"dev": "next dev --turbopack -p 3000",
"build": "next build",

View File

@@ -20,6 +20,11 @@ services:
build:
context: .
dockerfile: ./apps/hub/Dockerfile
args:
- NEXT_PUBLIC_DISPATCH_URL=$NEXT_PUBLIC_DISPATCH_URL
- NEXT_PUBLIC_HUB_URL=$NEXT_PUBLIC_HUB_URL
- NEXT_PUBLIC_LIVEKIT_URL=$NEXT_PUBLIC_LIVEKIT_URL
- NEXT_PUBLIC_HUB_SERVER_URL=$NEXT_PUBLIC_HUB_SERVER_URL
container_name: hub
ports:
- "3000:3000"