forked from oracle/oci-grafana-metrics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
120 lines (120 loc) · 3.82 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
{
"name": "oci-metrics-datasource",
"private": true,
"version": "5.0.0",
"description": "Oracle Cloud Infrastructure Metrics Data Source for Grafana",
"scripts": {
"build": "webpack -c ./.config/webpack/webpack.config.ts --env production",
"dev": "webpack -w -c ./.config/webpack/webpack.config.ts --env development",
"e2e": "yarn cypress install && yarn grafana-e2e run",
"e2e:update": "yarn cypress install && yarn grafana-e2e run --update-screenshots",
"server": "docker-compose up --build",
"sign": "npx --yes @grafana/sign-plugin@latest",
"start": "yarn watch",
"test": "jest --watch --onlyChanged",
"test:ci": "jest --passWithNoTests --maxWorkers 4",
"typecheck": "tsc --noEmit"
},
"author": "",
"license": "UPL-1.0",
"engines": {
"node": ">=16"
},
"engineStrict": true,
"devDependencies": {
"@babel/core": "^7.16.7",
"@grafana/e2e": "9.3.8",
"@grafana/e2e-selectors": "9.3.8",
"@grafana/eslint-config": "^5.1.0",
"@grafana/tsconfig": "^1.2.0-rc1",
"@grafana/data": "9.5.3",
"@grafana/runtime": "9.5.3",
"@grafana/ui": "9.5.3",
"@swc/core": "1.3.75",
"@swc/helpers": "^0.4.12",
"@swc/jest": "^0.2.23",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@types/glob": "^8.0.0",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"babel": "^6.23.0",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-webpack-plugin": "^3.1.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jsdoc": "^31.6.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-scope": "^5.1.1",
"eslint-utils": "^2.1.0",
"eslint-visitor-keys": "^2.1.0",
"fork-ts-checker-webpack-plugin": "^7.2.0",
"glob": "^8.0.3",
"grunt": "^1.5.3",
"grunt-babel": "~6.0.0",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.0.0",
"grunt-execute": "~0.2.2",
"grunt-systemjs-builder": "^1.0.0",
"identity-obj-proxy": "3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jsdom": "~16.5.0",
"load-grunt-tasks": "^3.5.2",
"prettier": "^2.5.0",
"prunk": "^1.3.0",
"q": "^1.5.0",
"@types/lodash": "4.14.195",
"react": "17.0.2",
"react-dom": "17.0.2",
"replace-in-file-webpack-plugin": "^1.0.6",
"sass": "1.56.1",
"sass-loader": "13.2.0",
"style-loader": "3.3.1",
"swc-loader": "^0.2.3",
"ts-node": "^10.5.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.4.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"webpack": "^5.69.1",
"webpack-cli": "^5.0.1",
"webpack-livereload-plugin": "^3.0.2",
"babel-loader": "^8.0.2",
"mocha": "6.x || 7.x || 8.x"
},
"dependencies": {
"@apache-arrow/es5-cjs": "^4.0.1",
"@babel/preset-env": "^7.3.4",
"@emotion/css": "^11.1.3",
"@grafana/data": "9.5.3",
"@grafana/runtime": "9.5.3",
"@grafana/ui": "9.5.3",
"@testing-library/react": "^12.1.4",
"babel-plugin-transform-es2015-for-of": "^6.6.0",
"babel-plugin-transform-es2015-modules-systemjs": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^8.38.0",
"eslint-config-standard": "^12.0.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.21",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"resolutions": {
"d3-color": "3.1.0",
"rxjs": "7.8.0"
}
}