-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.56 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
{
"name": "skywalking-horizon-ui",
"version": "1.0.0-dev",
"private": true,
"description": "Apache SkyWalking Horizon UI - next-generation web UI",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.33.2",
"scripts": {
"dev": "pnpm -r --parallel run dev",
"dev:ui": "pnpm --filter @skywalking-horizon-ui/ui dev",
"dev:bff": "pnpm --filter @skywalking-horizon-ui/bff dev",
"build": "pnpm -r run build",
"type-check": "pnpm -r run type-check",
"lint": "pnpm -r run lint && node scripts/check-source-budget.mjs",
"lint:budget": "node scripts/check-source-budget.mjs",
"test:unit": "pnpm -r run test:unit",
"license:check": "license-eye -c .licenserc.yaml header check",
"license:fix": "license-eye -c .licenserc.yaml header fix",
"licenses:bin:update": "node scripts/collect-dist-licenses.mjs --update-reference",
"licenses:bin:check": "node scripts/collect-dist-licenses.mjs --check && node scripts/check-dist-licenses.mjs",
"package": "node scripts/package.mjs",
"start": "HORIZON_CONFIG=${HORIZON_CONFIG:-./horizon.yaml} node dist/server.js"
},
"devDependencies": {
"typescript": "~5.6.3",
"yaml": "^2.9.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"argon2",
"esbuild",
"@parcel/watcher",
"vue-demi"
],
"overrides": {
"dompurify@<3.3.2": ">=3.3.2",
"js-cookie@<3.0.7": ">=3.0.7",
"ws@>=8.0.0 <8.20.1": ">=8.20.1",
"esbuild@<0.25.0": ">=0.25.0",
"shell-quote@<1.8.4": ">=1.8.4"
}
}
}