- Added production environment variables to docker-compose.yml - Updated Dockerfile for API and web to use Turbo build commands - Modified turbo.json to include new environment variables - Updated API index.ts to use new environment configuration - Updated README.md with correct API port - Added start:api script to package.json - Improved deployment and configuration management
29 lines
646 B
JSON
29 lines
646 B
JSON
{
|
|
"name": "ultimate-chat",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"dev": "turbo run dev",
|
|
"start:api": "turbo run start --filter=api",
|
|
"lint": "turbo run lint",
|
|
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
|
|
"check-types": "turbo run check-types"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.13.9",
|
|
"dotenv-cli": "^8.0.0",
|
|
"nodemon": "^3.1.9",
|
|
"prettier": "^3.5.3",
|
|
"ts-node": "^10.9.2",
|
|
"turbo": "^2.4.4",
|
|
"typescript": "5.8.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"packageManager": "npm@10.9.2",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
]
|
|
}
|