-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.64 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
84
85
86
87
88
89
90
91
92
{
"name": "@grafana/catalog-backend-module-grafana-servicemodel",
"description": "The grafana-service-model backend module for the catalog plugin.",
"homepage": "https://github.com/grafana/catalog-backend-module-grafana-servicemodel",
"version": "0.3.23",
"main": "src/index.ts",
"types": "src/index.ts",
"author": "Grafana Labs",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"repository": {
"type": "git",
"url": "github.com/grafana/catalog-backend-module-grafana-servicemodel"
},
"keywords": [
"backstage",
"grafana",
"plugin",
"backend"
],
"backstage": {
"role": "backend-plugin-module",
"pluginId": "catalog",
"pluginPackage": "@backstage/plugin-catalog-backend"
},
"scripts": {
"start": "backstage-cli package start",
"build": "tsc --project tsconfig.json && backstage-cli package build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"clean": "backstage-cli package clean",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack",
"prepare": "husky",
"tsc": "tsc --project tsconfig.json"
},
"dependencies": {
"@backstage/backend-plugin-api": "^1.0.1",
"@backstage/backend-test-utils": "^1.0.2",
"@backstage/catalog-model": "^1.7.0",
"@backstage/config": "^1.2.0",
"@backstage/errors": "^1.2.4",
"@backstage/plugin-catalog-backend": "^1.24.0",
"@backstage/plugin-catalog-common": "^1.0.25",
"@backstage/plugin-catalog-node": "^1.12.4",
"@kubernetes/client-node": "^0.20.0",
"@spotify/prettier-config": "^15.0.0",
"@types/lodash": "^4.14.202",
"jsonpath-plus": "^10.2.0",
"lodash": "^4.17.21",
"winston": "^3.2.1"
},
"devDependencies": {
"@backstage/backend-test-utils": "^1.0.2",
"@backstage/cli": "^0.26.11",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.14.202",
"husky": "^9.0.0",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"lint-staged": "^13.0.3",
"prettier": "^2.4.1",
"typescript": "^5.7.2"
},
"files": [
"dist",
"configSchema.d.ts"
],
"configSchema": "configSchema.d.ts",
"prettier": "@spotify/prettier-config",
"resolutions": {
"jsonpath-plus": "^10.2.0",
"@kubernetes/client-node": "^0.20.0",
"path-to-regexp": "^8.2.0",
"tough-cookie": "^4.1.4",
"request": "2.88.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"packageManager": "[email protected]"
}