-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
34 lines (34 loc) · 999 Bytes
/
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
{
"name": "instana-datasource",
"version": "4.1.1",
"description": "Instana Data Source for Grafana",
"scripts": {
"build": "grafana-toolkit plugin:build",
"test": "grafana-toolkit plugin:test",
"dev": "grafana-toolkit plugin:dev",
"watch": "grafana-toolkit plugin:dev --watch",
"up": "docker compose up --build",
"down": "docker compose down --remove-orphans",
"start": "yarn up -d; yarn watch",
"format": "prettier src/**/*.ts --write"
},
"author": "Instana",
"license": "Apache-2.0",
"devDependencies": {
"@grafana/data": "latest",
"@grafana/runtime": "latest",
"@grafana/toolkit": "latest",
"@grafana/ui": "latest",
"@types/lodash": "4.14.178",
"axios": "^0.25.0",
"prettier": "^2.5.1",
"prettier-eslint": "^8.2.2",
"prettier-eslint-cli": "^4.2.1"
},
"dependencies": {
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"eslint-plugin-prettier": "^4.0.0",
"lodash": "^4.17.21"
}
}