-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "yeya24-chaosmesh-datasource",
"version": "0.2.3",
"description": "Chaos Mesh Data Source",
"author": "Yue Yang <g1enyy0ung@gmail.com> (https://g1eny0ung.site)",
"license": "Apache-2.0",
"scripts": {
"prepare": "husky install",
"build": "grafana-toolkit plugin:build",
"test": "grafana-toolkit plugin:test",
"dev": "grafana-toolkit plugin:dev",
"watch": "grafana-toolkit plugin:dev --watch",
"sign": "grafana-toolkit plugin:sign",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@grafana/data": "^7.5.3",
"@grafana/runtime": "^7.5.3",
"@grafana/toolkit": "^7.5.3",
"@grafana/ui": "^7.5.3",
"@testing-library/jest-dom": "5.11.10",
"@testing-library/react": "^11.2.6",
"@types/lodash": "^4.14.168",
"husky": "^6.0.0",
"import-sort-style-eslint": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"prettier-plugin-import-sort": "^0.0.6",
"tslib": "^2.2.0"
},
"engines": {
"node": ">=12"
},
"lint-staged": {
"*.(j|t)s?(x)": "prettier --write"
},
"importSort": {
".js, .ts, .tsx": {
"style": "eslint",
"parser": "typescript"
}
}
}