forked from MiHashport/GFMiHashport
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 985 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 985 Bytes
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
{
"name": "hashport",
"version": "0.1.0",
"private": true,
"description": "Chat. Build. Pay. On Stellar — send, receive, swap, and deploy contracts from WhatsApp.",
"license": "MIT",
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "pnpm --parallel --filter \"./apps/*\" dev",
"dev:frontend": "pnpm --filter @hashport/frontend dev",
"dev:backend": "pnpm --filter @hashport/backend dev",
"build": "pnpm --filter \"./apps/*\" build",
"build:frontend": "pnpm --filter @hashport/frontend build",
"build:backend": "pnpm --filter @hashport/backend build",
"lint": "pnpm --filter \"./apps/*\" lint",
"test": "pnpm --filter \"./apps/*\" test",
"typecheck": "pnpm --filter \"./apps/*\" typecheck",
"contracts:build": "make -C contracts/hashport-account build",
"contracts:test": "make -C contracts/hashport-account test",
"contracts:fmt": "make -C contracts/hashport-account fmt"
}
}