-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "hcs-mesh-platform",
"version": "0.1.0",
"private": true,
"description": "Library-first Hedera-inspired messaging platform with a durable platform API and mirror worker.",
"workspaces": [
"packages/contracts",
"packages/hedera-port",
"packages/core",
"packages/persistence-memory",
"packages/persistence-postgres",
"packages/hedera-mock",
"packages/http-api",
"apps/platform-api",
"apps/mirror-worker",
"apps/admin-dashboard"
],
"scripts": {
"build": "node ./node_modules/typescript/bin/tsc -b tsconfig.build.json && npm run build --workspace @hcs-mesh/admin-dashboard",
"typecheck": "node ./node_modules/typescript/bin/tsc -b tsconfig.build.json --pretty false && npm run typecheck --workspace @hcs-mesh/admin-dashboard",
"lint": "npm run lint --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"audit": "npm audit --omit=dev --audit-level=high",
"migrate": "npm run migrate --workspace @hcs-mesh/persistence-postgres",
"smoke": "node ./node_modules/tsx/dist/cli.mjs scripts/smoke-compose.ts",
"benchmark": "node ./node_modules/tsx/dist/cli.mjs scripts/benchmark.ts",
"dev:dashboard": "npm run dev --workspace @hcs-mesh/admin-dashboard",
"start:api": "npm run start --workspace @hcs-mesh/platform-api",
"start:worker": "npm run start --workspace @hcs-mesh/mirror-worker"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@types/pg": "^8.15.6",
"tsx": "^4.20.0",
"typescript": "^5.8.0"
},
"engines": {
"node": ">=22"
}
}