-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 4.44 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 4.44 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "exploretraces-app",
"version": "2.1.0",
"description": "Queryless exploration of trace data stored in Tempo",
"scripts": {
"build": "webpack -c ./webpack.config.ts --env production",
"dev": "webpack -w -c ./webpack.config.ts --env development",
"e2e": "playwright test -x --trace on --ui",
"e2e:fast": "playwright test --retries=2 --workers=3 -x --trace on",
"e2e:fast:10x": "playwright test --retries=2 --workers=3 -x --trace on --repeat-each=10",
"e2e:debug": "playwright test --debug -x --trace on /e2e",
"e2e:codegen": "playwright codegen",
"knip": "knip",
"i18n-extract": "i18next-cli extract",
"i18n-extract-check": "i18next-cli extract --ci",
"test": "I18NEXT_NO_SUPPORT_NOTICE=true jest --watch --onlyChanged",
"test:ci": "I18NEXT_NO_SUPPORT_NOTICE=true jest --passWithNoTests --maxWorkers 4",
"typecheck": "tsc --noEmit",
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix && prettier --write --list-different .",
"server": "docker compose -f ./devenv/docker-compose.yaml up --build -d",
"server:ci": "docker compose -f ./devenv/docker-compose.e2e.yaml up --build -d",
"server:ci:down": "docker compose -f ./devenv/docker-compose.e2e.yaml down",
"server:react19": "GRAFANA_VERSION=dev-preview-react19 GRAFANA_IMAGE=grafana-enterprise GF_FEATURE_TOGGLES_ENABLE=react19 docker compose -f ./devenv/docker-compose.yaml up --build",
"start": "pnpm install --frozen-lockfile --ignore-scripts && pnpm dev",
"sign": "pnpm dlx @grafana/sign-plugin@latest"
},
"author": "Grafana",
"license": "AGPL-3.0-only",
"devDependencies": {
"@grafana/e2e-selectors": "13.1.0",
"@grafana/eslint-config": "8.1.0",
"@grafana/plugin-e2e": "2.1.8",
"@grafana/plugin-types": "0.0.39",
"@grafana/tsconfig": "2.0.0",
"@playwright/test": "1.59.1",
"@stylistic/eslint-plugin-ts": "4.4.1",
"@swc/core": "1.15.8",
"@swc/jest": "0.2.39",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/jest": "30.0.0",
"@types/lodash": "4.17.24",
"@types/node": "24.10.1",
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"@types/semver": "7.7.1",
"@typescript-eslint/eslint-plugin": "8.57.2",
"@typescript-eslint/parser": "8.57.2",
"copy-webpack-plugin": "12.0.2",
"css-loader": "7.1.4",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jsdoc": "62.8.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-webpack-plugin": "5.0.3",
"fork-ts-checker-webpack-plugin": "9.1.0",
"glob": "13.0.6",
"i18next-cli": "^1.34.1",
"identity-obj-proxy": "3.0.0",
"imports-loader": "5.0.0",
"jest": "30.4.2",
"jest-environment-jsdom": "30.4.1",
"knip": "5.88.1",
"prettier": "3.6.2",
"replace-in-file-webpack-plugin": "1.0.6",
"sass": "1.99.0",
"sass-loader": "16.0.7",
"semver": "7.7.4",
"style-loader": "4.0.0",
"swc-loader": "0.2.7",
"terser-webpack-plugin": "5.4.0",
"ts-node": "10.9.2",
"typescript": "5.8.3",
"webpack": "5.104.1",
"webpack-cli": "5.1.4",
"webpack-livereload-plugin": "3.0.2",
"webpack-merge": "5.10.0",
"webpack-subresource-integrity": "5.1.0",
"webpack-virtual-modules": "0.6.2"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@emotion/css": "11.10.6",
"@grafana/data": "13.1.0",
"@grafana/faro-web-sdk": "2.8.0",
"@grafana/i18n": "13.1.0",
"@grafana/lezer-traceql": "^0.0.23",
"@grafana/runtime": "13.1.0",
"@grafana/scenes": "7.4.0",
"@grafana/schema": "13.1.0",
"@grafana/ui": "13.1.0",
"@lezer/common": "^1.2.3",
"@openfeature/core": "^1.9.2",
"@openfeature/ofrep-web-provider": "^0.4.1",
"@openfeature/react-sdk": "^1.2.0",
"@openfeature/web-sdk": "^1.7.2",
"@react-aria/dialog": "^3.6.0",
"@react-aria/overlays": "^3.32.0",
"rc-drawer": "^7.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-inlinesvg": "^4.3.0",
"react-loading-skeleton": "^3.5.0",
"react-router-dom": "^6.30.2",
"react-select": "^5.10.2",
"react-use": "^17.6.0",
"rxjs": "7.8.2",
"uplot": "^1.6.32"
},
"packageManager": "pnpm@11.8.0+sha512.c1f5e7c4cb241c8f174b743851d82f42b802324afc8b0f116b96adb15aa06664948dde36960a3ba1079ba5b4b29dd0140135b94b5b5f5263592249d68e555f26"
}