-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.38 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.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
{
"name": "hydrolix-hydrolix-datasource",
"version": "0.11.0-dev",
"scripts": {
"build": "webpack -c ./.config/webpack/webpack.config.ts --env production",
"dev": "webpack -w -c ./.config/webpack/webpack.config.ts --env development",
"test": "jest --watch --onlyChanged",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit --collectCoverage --passWithNoTests --maxWorkers 4",
"typecheck": "tsc --noEmit",
"lint": "eslint --cache --ignore-path ./.gitignore --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "npm run lint -- --fix && prettier --write --list-different .",
"e2e": "playwright test",
"server": "docker compose up --build",
"sign": "npx --yes @grafana/sign-plugin@latest"
},
"author": "Hydrolix",
"license": "Apache-2.0",
"overrides": {
"rxjs": "^7.8.2",
"serialize-javascript": "^7.0.3",
"prismjs": "^1.30.0",
"immutable@4": "4.3.8",
"immutable@5": "5.1.5",
"dompurify": "3.3.2"
},
"devDependencies": {
"@grafana/eslint-config": "^9.0.0",
"@grafana/plugin-e2e": "^3.4.1",
"@grafana/tsconfig": "^2.0.0",
"@stylistic/eslint-plugin-ts": "^3.1.0",
"@swc/core": "^1.3.90",
"@swc/helpers": "^0.5.0",
"@swc/jest": "^0.2.39",
"@testing-library/jest-dom": "6.1.4",
"@testing-library/react": "14.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.8.7",
"@types/uuid": "^10.0.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/testing-library__jest-dom": "5.14.8",
"@types/webpack-livereload-plugin": "^2.3.6",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.0",
"eslint-formatter-gitlab": "^5.0.0",
"eslint-plugin-jsdoc": "^62.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-webpack-plugin": "^4.0.1",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"glob": "^13.0.6",
"identity-obj-proxy": "3.0.0",
"imports-loader": "^5.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-junit": "^16.0.0",
"node-rest-client-promise": "^3.1.1",
"prettier": "^2.8.7",
"replace-in-file-webpack-plugin": "^1.0.6",
"sass": "1.63.2",
"sass-loader": "13.3.1",
"semver": "^7.6.3",
"style-loader": "3.3.3",
"swc-loader": "^0.2.3",
"terser-webpack-plugin": "^5.3.10",
"ts-node": "^10.9.2",
"typescript": "5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-livereload-plugin": "^3.0.2",
"webpack-subresource-integrity": "^5.1.0",
"webpack-virtual-modules": "^0.6.2"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@emotion/css": "11.10.6",
"@grafana/data": "^12.4.0",
"@grafana/plugin-ui": "^0.12.1",
"@grafana/runtime": "^12.4.0",
"@grafana/schema": "^12.4.0",
"@grafana/ui": "^12.4.0",
"@react-hook/throttle": "^2.2.0",
"lodash": "^4.17.21",
"monaco-editor": "^0.34.0",
"polished": "^4.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.1",
"react-use": "17.6.0",
"remark-gfm": "^4.0.1",
"rxjs": "^7.8.2",
"sql-formatter": "^15.4.11",
"zustand": "^5.0.6",
"uuid": "^11.1.0"
},
"packageManager": "npm@10.9.2"
}