apps/gateway/package.json
Metadata
- Purpose: Package manifest defining scripts and dependencies.
- Domain:
applications - Language:
json - Bytes: 784
- Lines: 30
- Content hash (short):
af953eb0 - Source (start): apps/gateway/package.json:1
- Source (end): apps/gateway/package.json:30
Indexed Symbols
No indexed functions/methods detected in this file.
Markdown Headings (if applicable)
No markdown headings detected.
Source Preview
{
"name": "@anchor/gateway",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
"worker:outbox": "tsx src/workers/outbox-dispatcher.ts",
"worker:jobs": "tsx src/workers/job-processor.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/server.js",
"lint": "tsc -p tsconfig.json --noEmit",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "tsx --test src/tests/*.test.ts"
},
"dependencies": {
"@egintegrations/telemetry": "^0.3.0",
"@anchor/contracts": "workspace:*",
"fastify": "^5.1.0",
"jose": "^5.10.0",
"pg": "^8.13.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/pg": "^8.11.11",