-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
114 lines (114 loc) · 3.7 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
{
"name": "opennms-grafana-plugin",
"version": "10.0.0-SNAPSHOT",
"description": "An OpenNMS Integration for Grafana",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenNMS/grafana-plugin.git"
},
"author": "Benjamin Reed",
"license": "MIT",
"bugs": {
"url": "https://opennms.atlassian.net/projects/OPG"
},
"homepage": "https://github.com/OpenNMS/grafana-plugin",
"devDependencies": {
"@antora/cli": "^3.1.4",
"@antora/site-generator-default": "^3.1.4",
"@babel/core": "^7.24.5",
"@grafana/e2e": "^9.5.5",
"@grafana/e2e-selectors": "^9.5.5",
"@grafana/eslint-config": "^7.0.0",
"@grafana/tsconfig": "^1.3.0-rc1",
"@opennms/style": "github:OpenNMS/opennms-style#v0.4.0",
"@swc/core": "1.5.3",
"@swc/helpers": "^0.5.11",
"@swc/jest": "^0.2.32",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^12.1.4",
"@types/flot": "~0.0.32",
"@types/glob": "^8.1.0",
"@types/grafana": "github:CorpGlory/types-grafana",
"@types/jest": "^29.5.12",
"@types/jquery": "^3.5.13",
"@types/node": "^18.17.0",
"@types/react-router-dom": "^5.3.3",
"commander": "^11.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.1",
"eslint-webpack-plugin": "^4.0.1",
"fork-ts-checker-webpack-plugin": "^9.0.0",
"fs-extra": "^11.1.0",
"glob": "^8.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock-axios": "^4.7.3",
"prettier": "^3.0.0",
"recursive-copy": "^2.0.13",
"replace-in-file-webpack-plugin": "^1.0.6",
"rimraf": "^5.0.0",
"sass": "^1.75.0",
"sass-loader": "^14.2.1",
"specit": "^1.4.4",
"style-loader": "^4.0.0",
"swc-loader": "^0.2.6",
"ts-node": "^10.5.0",
"tsconfig-paths": "^4.1.0",
"tslib": "^2.3.1",
"typescript": "^4.9.5",
"urijs": "^1.19.11",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-livereload-plugin": "^3.0.2",
"which": "^4.0.0"
},
"engines": {
"node": ">=16"
},
"spec": {
"specTemplate": "src/rpm/spec.mustache",
"installDir": "/var/lib/grafana/plugins",
"requires": [
"grafana >= 9.3.8"
]
},
"dependencies": {
"@emotion/css": "^11.1.3",
"@grafana/data": "^9.5.5",
"@grafana/runtime": "^9.5.5",
"@grafana/ui": "^9.5.5",
"async": "^3.2.3",
"crypto-js": "^4.2.0",
"flot": "^0.8.3",
"flot-axislabels": "https://github.com/j-white/flot-axislabels#master",
"lodash.clonedeep": "^4.5.0",
"lodash.escaperegexp": "^4.1.2",
"opennms": "^2.5.9",
"parenthesis": "^3.1.7",
"perfect-scrollbar": "^1.5.5",
"q": "^1.5.1",
"react": "~17.0.2",
"react-dom": "~17.0.2",
"react-router-dom": "^5.2.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.19.3/xlsx-0.19.3.tgz"
},
"scripts": {
"build": "webpack -c ./webpack.config.ts --env production",
"dev": "webpack -c ./webpack.config.ts --env development",
"docs": "antora --stacktrace generate local-site.yml",
"e2e": "yarn cypress install && yarn grafana-e2e run",
"e2e:update": "yarn cypress install && yarn grafana-e2e run --update-screenshots",
"lint": "eslint --cache --ignore-path ./.gitignore --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "yarn lint --fix",
"server": "docker-compose up --build",
"sign": "npx --yes @grafana/sign-plugin@latest",
"start": "npm run watch",
"test": "jest",
"test:ci": "jest --passWithNoTests --maxWorkers 4",
"test:watch": "jest --watch --onlyChanged",
"typecheck": "tsc --noEmit",
"validate-xrefs": "antora --generator @antora/xref-validator local-site.yml",
"watch": "webpack -w -c ./webpack.config.ts --env development"
}
}