-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
executable file
·83 lines (83 loc) · 2.42 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
{
"name": "tencentcloud-monitor-grafana-app",
"private": false,
"version": "2.9.4",
"description": "Tencent Cloud Monitor plugin for Grafana",
"engines": {
"node": ">=14"
},
"keywords": [
"tencentcloud",
"tencentcloudmonitor",
"grafana",
"plugins"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TencentCloud/tencentcloud-monitor-grafana-app.git"
},
"author": "Tencent Cloud",
"license": "Apache-2.0",
"scripts": {
"build": "./bin/build-prod.sh",
"build:ci": "grafana-toolkit plugin:build",
"test": "grafana-toolkit plugin:test",
"dev": "grafana-toolkit plugin:dev",
"watch": "grafana-toolkit plugin:dev --watch",
"prettier": "prettier --config .prettierrc.js --write 'src/**/*.{js,jsx,ts,tsx}'",
"eslint": "eslint -c .eslintrc --fix 'src/**/*.{js,jsx,ts,tsx}'",
"validate": "node ./bin/routeValidCheck.js",
"sign": "grafana-toolkit plugin:sign",
"prepare": "husky install"
},
"bugs": {
"url": "https://github.com/TencentCloud/tencentcloud-monitor-grafana-app/issues"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@grafana/data": "^7.4.5",
"@grafana/runtime": "^7.4.5",
"@grafana/toolkit": "^8.4.3",
"@types/angular": "^1.6.6",
"@types/grafana": "https://[email protected]/CorpGlory/types-grafana.git",
"@types/jest": "^24.0.12",
"@types/lodash": "^4.14.123",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "5.1.2",
"eslint": "^7.21.0",
"eslint-config-alloy": "^3.10.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.1.2",
"husky": "^7.0.4",
"jest": "^24.8.0",
"lint-staged": "^12.3.7",
"prettier": "^2.2.1",
"typescript": "^4.5.4",
"webpack": "^4.29.6"
},
"dependencies": {
"@grafana/ui": "^7.5.3",
"angular": "^1.8.2",
"crypto-js": "^3.1.9-1",
"dot-qs": "^0.2.0",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-use": "^17.3.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint -c .eslintrc --fix",
"prettier --config .prettierrc.js --write"
],
"*.{json}": [
"npm run validate"
]
}
}