-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.41 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
{
"name": "chainbase-grafana",
"version": "0.1.0",
"description": "Grafana datasource plugin for the Chainbase SQL API",
"scripts": {
"build": "webpack --config webpack.config.ts --env production && mage -v",
"develop": "webpack --config webpack.config.ts --env development && mage -v",
"lint": "eslint . && golangci-lint run ./...",
"server": "docker-compose up --build"
},
"keywords": [
"grafana",
"chainbase"
],
"author": "KallyDev",
"license": "MPL-2.0",
"engines": {
"node": ">=20"
},
"dependencies": {
"@grafana/data": "^10.2.0",
"@grafana/runtime": "^10.2.0",
"@grafana/schema": "^10.2.0",
"@grafana/ui": "^10.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@grafana/eslint-config": "^6.0.1",
"@grafana/tsconfig": "1.3.0-rc1",
"@types/node": "^20.8.9",
"@types/react": "^18.2.33",
"@types/webpack": "^5.28.4",
"@types/webpack-livereload-plugin": "^2.3.5",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint-plugin-deprecation": "^2.0.0",
"glob": "^10.3.10",
"replace-in-file-webpack-plugin": "^1.0.6",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"swc-loader": "^0.2.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-livereload-plugin": "^3.0.2"
}
}