-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.19 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
{
"name": "ephemera",
"version": "0.1.0",
"private": true,
"description": "Ephemeral Proof of Health — Privacy-preserving ZK health badges on Midnight",
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"backend:dev": "pnpm --filter backend dev",
"frontend:dev": "pnpm --filter frontend dev",
"compact:compile": "compact compile contracts/epoh_badge.compact contracts/managed/epoh_badge",
"midnight:up": "docker compose -f docker-compose.yml up -d",
"midnight:down": "docker compose -f docker-compose.yml down",
"midnight:logs": "docker compose -f docker-compose.yml logs -f",
"test:backend": "pnpm --filter backend test",
"test:frontend": "pnpm --filter frontend test"
},
"packageManager": "[email protected]",
"dependencies": {
"@midnight-ntwrk/compact-runtime": "^0.15.0",
"@midnight-ntwrk/onchain-runtime-v3": "^3.0.0"
},
"pnpm": {
"overrides": {
"@midnight-ntwrk/wallet-sdk-shielded": "2.1.0",
"@midnight-ntwrk/wallet-sdk-unshielded-wallet": "2.1.0",
"@midnight-ntwrk/wallet-sdk-dust-wallet": "3.0.0",
"@midnight-ntwrk/wallet-sdk-facade": "3.0.0",
"@midnight-ntwrk/wallet-sdk-capabilities": "3.2.0"
}
}
}