-
Notifications
You must be signed in to change notification settings - Fork 680
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.51 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.51 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"private": true,
"name": "jaeger-ui-monorepo",
"version": "0.0.1",
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/jaegertracing/jaeger-ui.git"
},
"engines": {
"node": ">=24.6.0",
"npm": ">=11.6.0"
},
"devDependencies": {
"@babel/cli": "7.28.0",
"@babel/core": "7.29.0",
"@emnapi/core": "^1.9.1",
"@emnapi/runtime": "^1.9.1",
"@noble/hashes": "2.0.1",
"@testing-library/dom": "^10.4.1",
"ajv": "^8.0.0",
"cross-env": "10.1.0",
"depcheck": "1.4.7",
"eslint-plugin-react-x": "3.0.0",
"husky": "9.1.0",
"jsdom": "29.0.1",
"lint-staged": "16.4.0",
"npm-run-all2": "8.0.1",
"openapi-zod-client": "1.18.3",
"rxjs-compat": "6.6.7",
"typescript": "6.0.2",
"vite-plus": "0.1.15"
},
"overrides": {
"react": "19.2.0",
"react-dom": "19.2.0",
"yaml": "2.8.0",
"@exodus/bytes": {
"@noble/hashes": "$@noble/hashes"
}
},
"workspaces": [
"packages/plexus",
"packages/jaeger-ui"
],
"scripts": {
"build": "npm run --workspaces build",
"check-copyright-year": "./scripts/check-copyright-year.sh",
"check-license": "./scripts/check-license.sh",
"check-overrides": "./scripts/check-overrides.sh",
"check-tsx-naming": "./scripts/check-tsx-naming.sh",
"coverage": "npm run --workspaces coverage",
"depcheck": "./scripts/run-depcheck.sh",
"oxlint": "vp lint packages/ scripts/",
"fmt": "vp fmt",
"lint": "npm-run-all -ln --parallel fmt-lint tsc-lint oxlint check-license check-copyright-year check-tsx-naming check-overrides",
"prepare": "husky",
"fmt-lint": "vp fmt --check || (echo '*** ❌ PLEASE RUN make fmt AND RESUBMIT ***' && false)",
"generate:api-types": "openapi-zod-client https://raw.githubusercontent.com/jaegertracing/jaeger-idl/refs/heads/main/swagger/api_v3/query_service.openapi.yaml --output packages/jaeger-ui/src/api/v3/generated-client.ts --with-alias && node scripts/postprocess-schemas.cjs && vp fmt packages/jaeger-ui/src/api/v3/generated-client.ts",
"test": "npm run --workspaces test --",
"tsc-lint": "tsc -p packages/jaeger-ui/tsconfig.json && tsc -p packages/plexus/tsconfig.json",
"tsc-lint-debug": "tsc -p packages/jaeger-ui/tsconfig.json --listFiles && tsc -p packages/plexus/tsconfig.json --listFiles",
"start": "cd packages/jaeger-ui && npm run start",
"update-snapshots": "cd packages/jaeger-ui && npm test -- -u"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mts}": [
"vp lint --fix",
"vp fmt"
],
"*.{json,css}": [
"vp fmt --no-error-on-unmatched-pattern"
]
},
"dependencies": {
"@tanstack/react-virtual": "3.13.12",
"react-side-effect": "2.1.2"
},
"optionalDependencies": {
"@rolldown/binding-android-arm64": "1.0.0-rc.12",
"@rolldown/binding-darwin-arm64": "1.0.0-rc.12",
"@rolldown/binding-darwin-x64": "1.0.0-rc.12",
"@rolldown/binding-freebsd-x64": "1.0.0-rc.12",
"@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.12",
"@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.12",
"@rolldown/binding-linux-arm64-musl": "1.0.0-rc.12",
"@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.12",
"@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.12",
"@rolldown/binding-linux-x64-gnu": "1.0.0-rc.12",
"@rolldown/binding-linux-x64-musl": "1.0.0-rc.12",
"@rolldown/binding-openharmony-arm64": "1.0.0-rc.12",
"@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.12",
"@rolldown/binding-win32-x64-msvc": "1.0.0-rc.12"
}
}