forked from jaegertracing/jaeger-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.96 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.96 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
{
"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"
},
"devDependencies": {
"@babel/cli": "7.28.0",
"@babel/core": "7.28.5",
"@typescript-eslint/eslint-plugin": "8.50.0",
"@typescript-eslint/parser": "8.50.0",
"cross-env": "10.1.0",
"depcheck": "1.4.7",
"eslint": "9.39.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.11.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-testing-library": "7.15.1",
"husky": "9.1.0",
"jsdom": "27.4.0",
"lint-staged": "16.2.7",
"npm-run-all2": "8.0.1",
"prettier": "3.7.2",
"rxjs-compat": "6.6.7",
"typescript": "5.9.3"
},
"overrides": {
"react": "19.2.0",
"react-dom": "19.2.0",
"yaml": "2.8.0"
},
"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-tsx-naming": "./scripts/check-tsx-naming.sh",
"coverage": "npm run --workspaces coverage",
"depcheck": "./scripts/run-depcheck.sh",
"eslint": "eslint --cache 'scripts/*.{js,jsx,ts,tsx}' 'packages/*/src/**/*.{js,jsx,ts,tsx}' 'packages/*/*.{js,jsx,ts,tsx,mts}'",
"fmt": "npm run prettier",
"lint": "npm-run-all -ln --parallel prettier-lint tsc-lint eslint check-license check-copyright-year check-tsx-naming",
"prepare": "husky && npm run --workspace @jaegertracing/plexus prepublishOnly",
"prettier": "prettier --write '{.,scripts}/*.{js,jsx,json,md,ts,tsx,mts}' 'packages/*/{src,demo/src}/**/!(layout.worker.bundled|react-vis).{css,js,jsx,json,md,ts,tsx}' 'packages/*/*.{css,js,jsx,json,md,ts,tsx,mts}'",
"prettier-lint": "prettier --list-different '{.,scripts}/*.{js,jsx,json,md,ts,tsx,mts}' 'packages/*/{src,demo/src}/**/!(layout.worker.bundled|react-vis).{css,js,jsx,json,md,ts,tsx}' 'packages/*/*.{css,js,jsx,json,md,ts,tsx,mts}' || (echo '*** PLEASE RUN npm run prettier AND RESUBMIT ***' && false)",
"test": "npm run --workspaces test --",
"tsc-lint": "tsc --build",
"tsc-lint-debug": "tsc --listFiles",
"start": "cd packages/jaeger-ui && npm run start",
"update-snapshots": "cd packages/jaeger-ui && npm test -- -u"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 110,
"proseWrap": "never",
"singleQuote": true,
"trailingComma": "es5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mts}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json,css}": [
"prettier --write"
]
},
"dependencies": {
"@tanstack/react-virtual": "3.13.12",
"react-side-effect": "2.1.2"
}
}