-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.77 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "getbased",
"version": "1.3.9",
"private": true,
"description": "getbased — open-source health dashboard (PWA)",
"type": "module",
"engines": {
"node": "24.x"
},
"scripts": {
"architecture:build": "node scripts/architecture-map.mjs --write",
"architecture:check": "node scripts/architecture-map.mjs --check",
"dev-server": "node dev-server.js",
"marker-schema:build": "node scripts/build-marker-schema.mjs --write",
"marker-schema:check": "node scripts/build-marker-schema.mjs --check",
"marker-terminology:build": "node scripts/build-marker-terminology.mjs --write",
"marker-terminology:check": "node scripts/build-marker-terminology.mjs --check",
"performance:check": "playwright test tests/playwright/cold-load-budget.spec.js --workers=1",
"production:build": "node scripts/build-production.mjs",
"production:check": "node scripts/build-production.mjs --check",
"quality": "node scripts/quality-guardrails.mjs",
"sbom": "node scripts/supply-chain.mjs --sbom artifacts/getbased.cdx.json",
"supply-chain:check": "node scripts/supply-chain.mjs --check",
"supply-chain:snapshot": "node scripts/supply-chain.mjs --snapshot",
"test": "vitest run",
"test:firefox": "playwright test --config=playwright.firefox.config.js",
"test:playwright": "node scripts/local-full-suite-guard.mjs && playwright test",
"typecheck": "tsc -p tsconfig.json",
"typecheck:checkjs": "tsc -p tsconfig.checkjs.json",
"typecheck:server": "tsc -p tsconfig.server.json",
"typecheck:service-worker": "tsc -p tsconfig.service-worker.json",
"typecheck:strict-null": "node scripts/strict-null-ratchet.mjs",
"vendor:build": "node scripts/build-browser-vendors.mjs",
"vendor:check": "node scripts/build-browser-vendors.mjs --check",
"test:watch": "vitest",
"test:routstr-wallet": "PORT=${PORT:-8180} playwright test tests/playwright/routstr-wallet-dom.spec.js",
"canary:routstr-real": "node scripts/routstr-real-funds-canary.mjs"
},
"devDependencies": {
"@cashu/cashu-ts": "4.7.2",
"@noble/curves": "2.2.0",
"@phala/dcap-qvl": "0.6.1",
"@playwright/test": "^1.62.1",
"@vitest/coverage-v8": "^4.1.10",
"axe-core": "4.12.1",
"fake-indexeddb": "^6.2.5",
"jsdom": "^30.0.1",
"rolldown": "1.2.2",
"typescript": "^6.0.3",
"venice-e2ee": "https://github.com/elkimek/venice-e2ee/archive/7da6228c0cef3ad516196129eea2f9d64760e6b3.tar.gz",
"vitest": "^4.1.10",
"elliptic": "file:scripts/vendor-packages/elliptic-verify-only"
},
"dependencies": {
"@vercel/blob": "2.4.0",
"ehbp": "0.3.2",
"tinfoil": "^1.1.12",
"undici": "8.10.0"
},
"overrides": {
"@phala/dcap-qvl": {
"elliptic": "$elliptic"
},
"@vercel/blob": {
"undici": "6.28.0"
}
}
}