-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·95 lines (95 loc) · 3.01 KB
/
package.json
File metadata and controls
executable file
·95 lines (95 loc) · 3.01 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
{
"name": "gapit-htmlgraphics-panel",
"version": "2.2.3",
"description": "Grafana panel for displaying metric sensitive HTML and SVG graphics",
"homepage": "https://github.com/gapitio/gapit-htmlgraphics-panel#readme",
"bugs": {
"url": "https://github.com/gapitio/gapit-htmlgraphics-panel/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/gapitio/gapit-htmlgraphics-panel.git"
},
"license": "MIT",
"author": "Gapit",
"scripts": {
"build": "webpack -c ./webpack.config.ts --env production",
"dev": "webpack -w -c ./webpack.config.ts --env development",
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix && prettier --write --list-different .",
"server": "docker compose up --build",
"sign": "npx --yes @grafana/sign-plugin@latest",
"test": "jest --watch --onlyChanged",
"test:ci": "jest --passWithNoTests --maxWorkers 4",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@emotion/css": "11.10.6",
"@grafana/data": "^12.2.1",
"@grafana/i18n": "^12.2.1",
"@grafana/runtime": "^12.2.1",
"@grafana/schema": "^12.2.1",
"@grafana/ui": "^12.2.1",
"lodash": "^4.17.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"semver": "^7.7.3",
"tslib": "2.5.3"
},
"devDependencies": {
"@grafana/eslint-config": "^8.2.0",
"@grafana/tsconfig": "^2.0.1",
"@stylistic/eslint-plugin-ts": "^2.13.0",
"@swc/core": "^1.15.0",
"@swc/helpers": "^0.5.17",
"@swc/jest": "^0.2.39",
"@testing-library/jest-dom": "6.1.4",
"@testing-library/react": "14.0.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.20",
"@types/node": "^20.19.24",
"@types/react": "^17.0.89",
"@types/semver": "^7.7.1",
"@types/testing-library__jest-dom": "5.14.8",
"@types/webpack-env": "^1.18.8",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.11.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^8.10.2",
"eslint-plugin-jsdoc": "^51.4.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-webpack-plugin": "^5.0.2",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"glob": "^10.4.5",
"identity-obj-proxy": "3.0.0",
"imports-loader": "^5.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^2.8.8",
"replace-in-file-webpack-plugin": "^1.0.6",
"sass": "1.63.2",
"sass-loader": "13.3.1",
"style-loader": "3.3.3",
"swc-loader": "^0.2.6",
"terser-webpack-plugin": "^5.3.14",
"ts-node": "^10.9.2",
"typescript": "5.5.4",
"webpack": "^5.102.1",
"webpack-cli": "^5.1.4",
"webpack-livereload-plugin": "^3.0.2",
"webpack-merge": "^6.0.1",
"webpack-subresource-integrity": "^5.1.0",
"webpack-virtual-modules": "^0.6.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"core-js",
"protobufjs"
]
},
"packageManager": "pnpm@10.11.0"
}