PSA/ee/temporal-workflows/package.json
Hermes 284313f908
Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Initial import of AlgaPSA codebase from PSA server
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz

Source: /opt/alga-psa on psa.joliet.tech
2026-06-22 16:12:17 -05:00

95 lines
3.2 KiB
JSON

{
"name": "temporal-workflows",
"version": "1.0.0",
"description": "Temporal workflows for tenant creation and management",
"main": "dist/ee/temporal-workflows/src/worker.js",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json -f",
"dev": "tsx watch src/worker.ts",
"start": "node dist/ee/temporal-workflows/src/worker.js",
"start:worker": "node dist/ee/temporal-workflows/src/worker.js",
"start:client": "node dist/ee/temporal-workflows/src/client.js",
"test": "vitest",
"test:watch": "vitest --watch",
"test:e2e": "./scripts/test-e2e.sh",
"test:e2e:watch": "./scripts/test-e2e.sh --watch",
"test:unit": "vitest src/activities/__tests__ src/workflows/__tests__ src/config/__tests__ src/test-utils",
"test:all": "npm run test:unit && npm run test:e2e",
"docker:test:up": "docker-compose -f docker-compose.test.yml up -d",
"docker:test:down": "docker-compose -f docker-compose.test.yml down --volumes",
"type-check": "tsc --noEmit"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@alga-psa/core": "file:../../packages/core",
"@alga-psa/db": "file:../../packages/db",
"@alga-psa/shared": "file:../../shared",
"@alga-psa/sla": "file:../../packages/sla",
"@alga-psa/types": "file:../../packages/types",
"@alga-psa/workflow-streams": "file:../../packages/workflow-streams",
"@alga-psa/workflows": "file:../packages/workflows",
"@aws-sdk/client-s3": "^3.984.0",
"@aws-sdk/s3-request-presigner": "^3.984.0",
"@js-temporal/polyfill": "^0.4.4",
"@kubernetes/client-node": "^1.4.0",
"@temporalio/activity": "~1.14.1",
"@temporalio/client": "~1.14.1",
"@temporalio/worker": "~1.14.1",
"@temporalio/workflow": "~1.14.1",
"axios": "^1.16.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"dotenv": "^16.4.5",
"express": "^4.21.3",
"js-yaml": "^4.1.0",
"knex": "^3.0.0",
"node-vault": "^0.10.9",
"parsimmon": "^1.18.1",
"pg": "^8.12.0",
"pg-types": "^4.0.2",
"redis": "^4.7.1",
"resend": "^4.6.0",
"rfc4648": "^1.3.0",
"stream-buffers": "^3.0.2",
"stripe": "^19.1.0",
"uuid": "^10.0.0",
"winston": "^3.13.1",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@temporalio/nyc-test-coverage": "~1.14.1",
"@temporalio/testing": "~1.14.1",
"@types/express": "^4.17.17",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.24",
"@types/pg": "^8.11.6",
"@types/uuid": "^10.0.0",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.3",
"typescript": "^5.3.3",
"vitest": "^3.0.0"
},
"overrides": {
"protobufjs": "^7.5.8",
"@protobufjs/utf8": ">=1.1.1",
"fast-uri": ">=3.1.2",
"fast-xml-parser": ">=5.7.0",
"fast-xml-builder": ">=1.1.7",
"basic-ftp": ">=5.3.1",
"picomatch": ">=2.3.2",
"postcss": ">=8.5.10",
"ws": ">=8.20.1",
"dompurify": ">=3.4.0",
"follow-redirects": ">=1.16.0",
"ip-address": ">=10.1.1",
"vite": ">=6.4.2",
"lodash": ">=4.18.1",
"path-to-regexp@0.1": "0.1.12",
"brace-expansion": ">=1.1.13"
}
}