-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.56 KB
/
package.json
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
{
"name": "grafana-odata-datasource",
"version": "1.1.0",
"description": "Loads data from OData (V4) compliant data sources to Grafana",
"bugs": {
"url": "https://github.com/d-velop/grafana-odata-datasource/issues"
},
"homepage": "https://github.com/d-velop/grafana-odata-datasource#readme",
"repository": {
"type": "git",
"url": "https://github.com/d-velop/grafana-odata-datasource.git"
},
"keywords": [
"Grafana",
"Datasource",
"OData"
],
"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 --ignore-path ./.gitignore --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "yarn run lint --fix",
"e2e": "yarn exec cypress install && yarn exec grafana-e2e run",
"e2e:update": "yarn exec cypress install && yarn exec grafana-e2e run --update-screenshots",
"server": "docker compose up --build",
"sign": "npx --yes @grafana/sign-plugin@latest",
"checkCompatibility": "npx @grafana/levitate@latest is-compatible --path src/module.ts --target @grafana/data,@grafana/ui,@grafana/runtime"
},
"author": "d.velop AG",
"license": "Apache-2.0",
"devDependencies": {
"@grafana/e2e": "^10.4.3",
"@grafana/eslint-config": "^7.0.0",
"@grafana/tsconfig": "^1.3.0-rc1",
"@swc/core": "^1.6.6",
"@swc/jest": "^0.2.36",
"@testing-library/jest-dom": "^6.4.6",
"@types/glob": "^8.1.0",
"@types/node": "^20.14.9",
"copy-webpack-plugin": "^12.0.2",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-webpack-plugin": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"glob": "^10.4.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.2",
"replace-in-file-webpack-plugin": "^1.0.6",
"swc-loader": "^0.2.6",
"ts-node": "^10.9.2",
"typescript": "5.5.3",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-livereload-plugin": "^3.0.2"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@emotion/css": "^11.11.2",
"@grafana/data": "^10.4.3",
"@grafana/runtime": "^10.4.5",
"@grafana/ui": "^10.4.4",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"packageManager": "[email protected]",
"resolutions": {
"underscore": "^1.12.1",
"debug": "^3.1.0",
"log4js": "^6.4.0",
"@cypress/request": "^3.0.0",
"tough-cookie": "^4.1.3"
}
}