{ "name": "backend", "$schema": "../../node_modules/nx/schemas/project-schema.json", "sourceRoot": "apps/backend/src", "projectType": "application", "tags": [], "targets": { "serve": { "executor": "@nx/js:node", "defaultConfiguration": "development", "dependsOn": ["build"], "options": { "buildTarget": "backend:build", "runBuildTargetDependencies": false }, "configurations": { "development": { "buildTarget": "backend:build:development" }, "production": { "buildTarget": "backend:build:production" } } }, "container": { "executor": "@nx-tools/nx-container:build", "dependsOn": ["build"], "options": { "engine": "docker", "metadata": { "images": ["backend"], "load": true, "tags": [ "type=schedule", "type=ref,event=branch", "type=ref,event=tag", "type=ref,event=pr", "type=sha,prefix=sha-" ] } } } } }