-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.66 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.66 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
{
"name": "vaduga-mapgl-panel",
"version": "2.1.0",
"description": "Mapgl panel",
"type": "module",
"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 --passWithNoTests --maxWorkers 4",
"typecheck": "tsc --noEmit",
"lint": "eslint --cache .",
"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": "Vadim Pyatakov",
"license": "GPL-3.0",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-transform-async-to-generator": "^7.28.6",
"@babel/preset-env": "^7.29.2",
"@grafana/e2e": "11.0.6",
"@grafana/e2e-selectors": "12.4.2",
"@grafana/eslint-config": "^9.0.0",
"@grafana/plugin-meta-extractor": "^0.12.2",
"@grafana/tsconfig": "^2.0.1",
"@swc/core": "^1.15.21",
"@swc/helpers": "^0.5.19",
"@swc/jest": "^0.2.39",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "^16.3.2",
"@types/geojson": "^7946.0.16",
"@types/glob": "^9.0.0",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.24",
"@types/mapbox-gl": "^3.5.0",
"@types/node": "^25.5.0",
"@types/testing-library__jest-dom": "6.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"@typescript/native-preview": "^7.0.0-dev.20260321.1",
"ajv": "^8.18.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-jsdoc": "^62.8.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.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.3.0",
"jest-environment-jsdom": "^30.3.0",
"prettier": "^3.8.1",
"replace-in-file-webpack-plugin": "^1.0.6",
"sass": "1.98.0",
"sass-loader": "16.0.7",
"style-loader": "4.0.0",
"swc-loader": "^0.2.7",
"systemjs": "^6.15.1",
"terser-webpack-plugin": "^5.4.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"webpack": "^5.105.4",
"webpack-bundle-analyzer": "^5.3.0",
"webpack-cli": "^7.0.2",
"webpack-livereload-plugin": "^3.0.2",
"webpack-subresource-integrity": "^5.1.0",
"webpack-virtual-modules": "^0.6.2"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@emotion/css": "11.13.5",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@grafana/data": "^12.4.2",
"@grafana/runtime": "^12.4.2",
"@grafana/schema": "12.4.2",
"@grafana/ui": "^12.4.2",
"@turf/bbox": "^7.3.4",
"@turf/helpers": "^7.3.4",
"arquero": "^8.0.3",
"deck.gl": "9.1.15",
"lodash": "^4.17.23",
"mapbox-gl": "^3.20.0",
"mapLib": "file:./mapLib",
"maplibre-gl": "^5.21.1",
"mobx": "^6.15.0",
"mobx-react-lite": "^4.1.1",
"process": "^0.11.10",
"react": "18.3.1",
"react-copy-to-clipboard": "^5.1.1",
"react-dom": "18.3.1",
"react-map-gl": "^8.1.0",
"react-virtualized-auto-sizer": "^1.0.26",
"react-window": "^1.8.11"
},
"overrides": {
"@stylistic/eslint-plugin-ts": "^3.1.0",
"fast-xml-parser": "5.5.6",
"flatted": "3.4.2"
},
"packageManager": "npm@11.12.0"
}