forked from grafana/grafana-zabbix
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
135 lines (135 loc) · 4.33 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "grafana-zabbix",
"private": false,
"version": "4.2.10",
"description": "Zabbix plugin for Grafana",
"homepage": "http://grafana-zabbix.org",
"scripts": {
"build": "webpack -c ./webpack.config.ts --env production",
"dev": "webpack -w -c ./webpack.config.ts --env development",
"test": "jest --watch --onlyChanged",
"test:ci": "jest --maxWorkers 4",
"typecheck": "tsc --noEmit",
"lint": "eslint --cache --ignore-path ./.gitignore --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "yarn lint --fix",
"e2e": "yarn cypress install && yarn grafana-e2e run",
"e2e:update": "yarn cypress install && yarn grafana-e2e run --update-screenshots",
"server": "docker-compose --file ./devenv/default/docker-compose.yml up --build",
"server:stop": "docker-compose --file ./devenv/default/docker-compose.yml stop",
"server:down": "docker-compose --file ./devenv/default/docker-compose.yml down",
"sign": "grafana-toolkit plugin:sign"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexanderzobnin/grafana-zabbix.git"
},
"author": "Alexander Zobnin",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/alexanderzobnin/grafana-zabbix/issues"
},
"devDependencies": {
"@emotion/css": "11.1.3",
"@emotion/react": "11.1.5",
"@grafana/data": "9.1.2",
"@grafana/e2e": "9.2.5",
"@grafana/e2e-selectors": "9.2.5",
"@grafana/eslint-config": "^5.1.0",
"@grafana/runtime": "9.1.2",
"@grafana/toolkit": "9.1.2",
"@grafana/tsconfig": "^1.2.0-rc1",
"@grafana/ui": "9.1.2",
"@popperjs/core": "2.4.0",
"@swc/core": "^1.2.144",
"@swc/helpers": "^0.4.12",
"@swc/jest": "^0.2.23",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@types/classnames": "2.2.9",
"@types/glob": "^8.0.0",
"@types/grafana": "github:CorpGlory/types-grafana",
"@types/jest": "^29.2.2",
"@types/jquery": "3.3.32",
"@types/lodash": "^4.14.188",
"@types/node": "^18.11.9",
"@types/react": "17.0.42",
"@types/react-dom": "17.0.14",
"@types/react-router-dom": "^5.3.3",
"@types/react-transition-group": "4.2.4",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"autoprefixer": "10.4.7",
"axios": "^0.21.1",
"benchmark": "^2.1.4",
"classnames": "2.2.6",
"clean-webpack-plugin": "^0.1.19",
"codecov": "^3.1.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "8.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^39.6.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^3.1.1",
"fork-ts-checker-webpack-plugin": "^7.2.0",
"glob": "^8.0.3",
"html-loader": "0.5.5",
"identity-obj-proxy": "3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-environment-jsdom-fifteen": "^1.0.2",
"jscs": "^3.0.7",
"jsdom": "~11.3.0",
"jshint": "^2.9.6",
"jshint-stylish": "^2.1.0",
"lodash": "4.17.21",
"memoize-one": "5.1.1",
"mini-css-extract-plugin": "2.6.1",
"moment": "2.24.0",
"node-sass": "^7.0.1",
"postcss": "8.4.14",
"postcss-loader": "7.0.1",
"postcss-reporter": "7.0.5",
"postcss-scss": "4.0.4",
"prettier": "^2.5.0",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-popper": "^2.2.3",
"react-table-6": "6.11.0",
"react-test-renderer": "17.0.2",
"react-transition-group": "4.3.0",
"react-use": "17.4.0",
"replace-in-file-webpack-plugin": "^1.0.6",
"rxjs": "6.6.3",
"sass": "1.56.1",
"sass-loader": "13.2.0",
"semver": "^7.3.2",
"style-loader": "3.3.1",
"swc-loader": "^0.2.3",
"tether-drop": "^1.4.2",
"ts-jest": "26.4.1",
"ts-loader": "4.4.1",
"ts-node": "^10.5.0",
"tsconfig-paths": "^4.1.0",
"tslint": "^6.1.3",
"typescript": "4.8.2",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-livereload-plugin": "^3.0.2",
"webpack-remove-empty-scripts": "^1.0.1"
},
"engines": {
"node": ">=16"
},
"resolutions": {
"js-yaml": "^3.13.1",
"lodash": "~4.17.13",
"set-value": "^2.0.1",
"mixin-deep": "^1.3.2",
"minimatch": "^3.0.2",
"fstream": "^1.0.12"
}
}