-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 2.1 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
{
"name": "thewebblock",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "npm@11.16.0",
"engines": {
"node": "24.18.0",
"npm": "11.16.0"
},
"workspaces": [
"contracts",
"server",
"apps/dashboard"
],
"scripts": {
"check:toolchains": "node tools/workspace/check-toolchains.ts",
"check:workspace-boundaries": "node --test tools/workspace/check-workspace-boundaries.test.ts",
"check:contracts": "npm run test:unit -w contracts",
"check:format": "biome check --formatter-enabled=true --linter-enabled=false .",
"lint": "biome lint .",
"typecheck": "tsc -p tsconfig.json",
"test:unit": "npm run test:unit --workspaces --if-present",
"test:integration": "npm run test:integration -w server",
"test:migrations": "npm run test:migrations -w server",
"test:templates": "npm run test:templates -w server",
"test:sandbox:adversarial": "cargo test -p sandbox-runner --locked --test confinement --test teardown_and_quotas",
"test:publication:crash-matrix": "npm run test:publication:crash-matrix -w server",
"test:acceptance": "node --test \"tests/acceptance/**/*.test.ts\"",
"test:e2e": "npm run test:e2e -w dashboard",
"test:a11y": "npm run test:a11y -w dashboard",
"test:telemetry": "npm run test:telemetry -w server",
"build": "npm run build --workspaces",
"sbom": "node tools/release/sbom.ts",
"scan:release": "node tools/release/scan-release.ts",
"release:build": "node tools/release/build.ts",
"release:verify-signature": "node tools/release/verify-signature.ts",
"deploy:smoke:local": "node tools/release/deploy-smoke-local.ts",
"deploy:rollback:local": "node tools/release/deploy-rollback-local.ts",
"verify:licenses": "node tools/release/verify-licenses.ts",
"verify:log-redaction": "node tools/workspace/verify-log-redaction.ts",
"verify:metrics-cardinality": "node tools/workspace/verify-metrics-cardinality.ts",
"ci:validate": "node tools/ci/validate.ts"
},
"devDependencies": {
"@biomejs/biome": "2.5.5",
"@types/node": "24.13.3",
"typescript": "7.0.2"
}
}