-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
31 lines (31 loc) · 903 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
{
"name": "grafana-mqtt-datasource",
"version": "1.0.0-beta.2",
"description": "MQTT Datasource Plugin",
"scripts": {
"build": "rm -rf dist && grafana-toolkit plugin:build && mage build:backend",
"spellcheck": "cspell -c cspell.config.json \"**/*.{ts,tsx,js,go,md,mdx,yml,yaml,json,scss,css}\"",
"test": "grafana-toolkit plugin:test && mage test",
"dev": "grafana-toolkit plugin:dev",
"watch": "grafana-toolkit plugin:dev --watch",
"sign": "grafana-toolkit plugin:sign",
"start": "yarn watch"
},
"author": "Grafana Labs",
"license": "Apache-2.0",
"devDependencies": {
"@grafana/data": "9.1.0",
"@grafana/runtime": "9.1.0",
"@grafana/toolkit": "9.1.0",
"@grafana/ui": "9.1.0",
"@types/lodash": "latest",
"aedes": "^0.45.0",
"cspell": "6.13.3"
},
"resolutions": {
"rxjs": "7.5.6"
},
"engines": {
"node": ">=16"
}
}