-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
164 lines (164 loc) · 6.38 KB
/
package.json
File metadata and controls
164 lines (164 loc) · 6.38 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "grafana-lokiexplore-app",
"version": "2.0.3",
"description": "Query less exploration of log data stored in Loki",
"scripts": {
"build": "webpack -c ./webpack.config.ts --env production",
"dev": "webpack -w -c ./webpack.config.ts --env development",
"test": "jest --onlyChanged",
"test:watch": "jest --watch --onlyChanged",
"test:ci": "jest --passWithNoTests --maxWorkers 4",
"typecheck": "tsc --noEmit",
"lint": "eslint . --cache",
"lint:fix": "yarn run lint --fix && prettier --write --list-different . --ignore-path ./.prettierignore",
"e2e:smoke": "playwright test -c playwright.smoke.config.ts -x --trace on",
"e2e:matrix": "playwright test -c playwright.matrix.config.ts -x --trace on",
"e2e": "playwright test -x --trace on",
"e2e:fast": "playwright test --retries=1 --workers=3",
"e2e:10x": "playwright test -x --trace on --repeat-each=10 --workers 1",
"e2e:10x:fast": "playwright test --repeat-each=10 --workers 3 --retries=1",
"e2e:flake": "yarn e2e:10x",
"e2e:debug": "playwright test --debug -x --trace on /test",
"e2e:codegen": "playwright install && playwright codegen",
"generate-logs": "pushd generator; docker build -t log-generator . && docker run log-generator -url http://host.docker.internal:3100/loki/api/v1/push -tenant-id=1; popd",
"server": "docker compose -f docker-compose.local.yaml up --build",
"server:enterprise": "GRAFANA_VERSION=nightly GRAFANA_IMAGE=grafana-enterprise GF_FEATURE_TOGGLES_ENABLE=queryLibrary docker compose -f docker-compose.local.yaml up --build",
"server:react19": "yarn build && GRAFANA_VERSION=dev-preview-react19 docker compose -f docker-compose.local.yaml up --build",
"start": "yarn build && docker compose -f docker-compose.local.yaml up --build -d && yarn dev",
"start:all": "yarn build && docker compose -f docker-compose-local-all.yaml up --build -d && yarn dev",
"server:localLoki": "docker compose -f docker-compose-local-loki.dev.yaml up --build",
"server:ci": "docker compose -f docker-compose.dev.yaml up --build -d",
"server:syslog": "docker compose -f docker-compose-syslog.dev.yaml up --build",
"server:down": "docker compose -f docker-compose.local.yaml down",
"sign": "npx --yes @grafana/sign-plugin@latest",
"prepare": "husky",
"docs": "cd docs && make docs",
"spellcheck": "cspell -c cspell.config.json \"**/*.{ts,tsx,js,go,md,mdx,yml,yaml,json,scss,css}\"",
"i18n:extract": "i18next-cli extract -c i18next.config.ts",
"i18n:extract:check": "i18next-cli extract -c i18next.config.ts --ci"
},
"author": "Grafana",
"license": "AGPL-3.0-only",
"devDependencies": {
"@babel/core": "7.28.5",
"@commitlint/cli": "20.3.0",
"@commitlint/config-conventional": "19.8.1",
"@grafana/eslint-config": "9.0.0",
"@grafana/plugin-e2e": "3.3.3",
"@grafana/plugin-types-bundler": "0.5.0",
"@grafana/tsconfig": "2.0.1",
"@playwright/test": "1.57.0",
"@stylistic/eslint-plugin-ts": "4.4.1",
"@swc/core": "1.15.0",
"@swc/helpers": "0.5.17",
"@swc/jest": "0.2.39",
"@testing-library/jest-dom": "6.6.0",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@total-typescript/ts-reset": "0.6.1",
"@types/jest": "30.0.0",
"@types/lodash": "4.17.24",
"@types/node": "24.0.0",
"@types/react": "18.3.0",
"@types/react-dom": "18.3.0",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "8.38.0",
"@typescript-eslint/parser": "8.38.0",
"copy-webpack-plugin": "13.0.1",
"cspell": "6.13.3",
"css-loader": "7.1.4",
"eslint": "9.32.0",
"eslint-config-prettier": "10.1.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "52.0.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.0",
"eslint-plugin-react-hooks": "7.0.0",
"eslint-plugin-sort": "4.0.0",
"eslint-webpack-plugin": "5.0.0",
"fork-ts-checker-webpack-plugin": "9.1.0",
"glob": "11.1.0",
"husky": "9.1.7",
"i18next-cli": "^1.40.1",
"identity-obj-proxy": "3.0.0",
"imports-loader": "5.0.0",
"jest": "30.2.0",
"jest-canvas-mock": "2.5.2",
"jest-environment-jsdom": "30.2.0",
"lint-staged": "16.2.7",
"prettier": "3.6.0",
"react-scroll-sync": "1.0.2",
"react-select-event": "5.5.1",
"replace-in-file-webpack-plugin": "1.0.6",
"sass": "1.89.0",
"sass-loader": "16.0.0",
"style-loader": "4.0.0",
"swc-loader": "0.2.6",
"terser-webpack-plugin": "5.3.16",
"ts-node": "10.9.2",
"tsc-files": "1.1.4",
"tsconfig-paths": "4.2.0",
"typescript": "5.9.2",
"webpack": "5.104.1",
"webpack-bundle-analyzer": "4.10.2",
"webpack-cli": "6.0.0",
"webpack-livereload-plugin": "3.0.2",
"webpack-subresource-integrity": "5.1.0",
"webpack-virtual-modules": "0.6.2"
},
"engines": {
"node": ">=24"
},
"dependencies": {
"@bsull/augurs": "^0.10.2",
"@emotion/css": "11.10.6",
"@grafana/api-clients": "^13.0.0-22766927077",
"@grafana/assistant": "0.1.13",
"@grafana/data": "^12.4.0",
"@grafana/i18n": "^12.4.0",
"@grafana/lezer-logql": "^0.3.0",
"@grafana/runtime": "^12.4.0",
"@grafana/scenes": "^6.57.0",
"@grafana/scenes-react": "^6.52.12",
"@grafana/schema": "^12.4.0",
"@grafana/ui": "^12.4.0",
"@gtk-grafana/react-json-tree": "^0.0.13",
"@hello-pangea/dnd": "^16.6.0",
"@lezer/common": "^1.2.1",
"@lezer/lr": "^1.4.1",
"@openfeature/ofrep-web-provider": "^0.3.5",
"@openfeature/web-sdk": "^1.7.2",
"@reduxjs/toolkit": "2.10.1",
"@types/react-table": "^7.7.20",
"@types/semver": "^7.7.1",
"re-resizable": "^6.11.2",
"re2js": "^1.1.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-router-dom": "^7.12.0",
"react-table": "^7.8.0",
"rxjs": "7.8.2",
"semver": "7.7.0",
"tslib": "2.5.3",
"uuid": "^10.0.0"
},
"resolutions": {
"react-router-dom": "^7.12.0",
"@remix-run/router": "1.23.2",
"uuid": "^10.0.0",
"lodash": "4.18.0",
"brace-expansion@^1.1.7": "1.1.13",
"brace-expansion@^2.0.1": "2.0.3",
"brace-expansion@^2.0.2": "2.0.3",
"brace-expansion@^5.0.2": "5.0.5",
"undici": "^7.24.0",
"immutable": "5.1.5",
"dompurify": "3.3.2",
"serialize-javascript": "7.0.5",
"qs": "6.14.2",
"strip-ansi": "6.0.1",
"tar": "7.5.11",
"js-yaml": "4.1.1"
},
"packageManager": "yarn@4.5.0"
}