-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 813 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 813 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
{
"name": "lightningmate",
"version": "0.1.0",
"private": true,
"description": "Self-hosted management dashboard & autopilot for an Umbrel LND Lightning node (fees, rebalancing, channels, Amboss Magma liquidity)",
"workspaces": [
"server",
"web"
],
"scripts": {
"dev": "concurrently -n server,web -c blue,magenta \"npm:dev -w server\" \"npm:dev -w web\"",
"build": "npm run build -w server && npm run build -w web",
"start": "npm run start -w server",
"typecheck": "npm run typecheck -w server && npm run typecheck -w web"
},
"devDependencies": {
"concurrently": "^9.1.0"
},
"comment:overrides": "Force patched transitive deps (DoS advisories) that lightning pins to vulnerable ranges.",
"overrides": {
"@grpc/grpc-js": "1.14.4",
"bn.js": "5.2.3"
}
}