-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.55 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.55 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
{
"name": "victoriametrics-logs-datasource",
"version": "0.29.0",
"description": "VictoriaLogs datasource plugin for grafana",
"scripts": {
"build": "webpack -c ./webpack.config.ts --env production",
"dev": "webpack -w -c ./webpack.config.ts --env development",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch --onlyChanged",
"test:ci": "jest --maxWorkers 4",
"test:coverage": "jest --collectCoverage",
"typecheck": "tsc --noEmit",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"server": "docker compose up",
"sign": "[ -z $GRAFANA_ACCESS_POLICY_TOKEN ] && echo 'skip plugin signing' || npx --yes @grafana/sign-plugin@latest"
},
"author": "VictoriaMetrics",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.29.7",
"@emotion/eslint-plugin": "^11.12.0",
"@eslint/compat": "^2.1.0",
"@eslint/js": "^10.0.1",
"@grafana/e2e-selectors": "^12.4.3",
"@grafana/eslint-config": "^9.0.0",
"@grafana/tsconfig": "^2.2.0",
"@openfeature/web-sdk": "^1.8.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@stylistic/eslint-plugin-ts": "^4.4.1",
"@swc/core": "^1.15.40",
"@swc/helpers": "^0.5.23",
"@swc/jest": "^0.2.39",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "16.3.2",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.24",
"@types/node": "^25.9.1",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.60.1",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-lodash": "^8.0.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unused-imports": "^4.4.1",
"eslint-webpack-plugin": "^5.0.3",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"glob": "^13.0.6",
"identity-obj-proxy": "3.0.0",
"imports-loader": "^5.0.0",
"jest": "30.4.2",
"jest-environment-jsdom": "30.4.1",
"prettier": "^3.8.3",
"replace-in-file-webpack-plugin": "^1.0.6",
"sass": "1.100.0",
"sass-loader": "16.0.8",
"style-loader": "4.0.0",
"swc-loader": "^0.2.7",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.60.1",
"webpack": "^5.107.2",
"webpack-cli": "^6.0.1",
"webpack-livereload-plugin": "^3.0.2",
"webpack-subresource-integrity": "^5.2.0-rc.1",
"webpack-virtual-modules": "^0.6.2"
},
"engines": {
"node": ">=24.11.1"
},
"dependencies": {
"@emotion/css": "11.13.5",
"@grafana/data": "^12.4.3",
"@grafana/lezer-logql": "^0.3.0",
"@grafana/plugin-ui": "^0.13.1",
"@grafana/runtime": "^12.4.3",
"@grafana/schema": "^12.4.3",
"@grafana/ui": "^12.4.3",
"@lezer/common": "^1.5.2",
"@lezer/lr": "^1.4.10",
"lodash": "^4.18.1",
"react": "19.2.7",
"react-dom": "19.2.7",
"rxjs": "^7.8.2",
"semver": "^7.8.1",
"tslib": "2.8.1"
},
"resolutions": {
"dompurify@npm:3.3.0": "npm:3.4.11",
"immutable@npm:5.1.4": "npm:5.1.7",
"uuid@npm:11.1.0": "npm:11.1.1",
"js-yaml@npm:^3.13.1": "npm:4.2.0",
"@opentelemetry/core@npm:2.7.1": "npm:2.8.0",
"react-use@npm:17.6.0": "npm:17.6.1"
},
"packageManager": "yarn@4.13.0"
}