This repository was archived by the owner on Oct 16, 2024. It is now read-only.
forked from OpsLevel/backstage-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.12 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.12 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@loadsmart/backstage-plugin-opslevel-maturity",
"version": "0.5.18",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
"private": false,
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loadsmart/opslevel-backstage-plugin.git"
},
"backstage": {
"role": "frontend-plugin"
},
"scripts": {
"start": "backstage-cli package start",
"build": "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",
"release": "semantic-release"
},
"dependencies": {
"@backstage/catalog-model": "^1.4.4",
"@backstage/config": "^1.0.4",
"@backstage/core-components": "^0.14.3",
"@backstage/core-plugin-api": "^1.9.0",
"@backstage/plugin-catalog-react": "^1.10.0",
"@backstage/theme": "^0.5.1",
"@material-ui/core": "^4.9.13",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "4.0.0-alpha.57",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"graphql": "^16.6.0",
"graphql-request": "^6.0.0",
"semantic-release": "^20.1.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router": "^6.22.3",
"react-router-dom": "^6.3.0",
"react-use": "^17.2.4"
},
"devDependencies": {
"@backstage/cli": "^0.26.2",
"@backstage/core-app-api": "^1.12.3",
"@backstage/dev-utils": "^1.0.24",
"@backstage/test-utils": "^1.4.5",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.0.0",
"@types/node": "*",
"cross-fetch": "^4.0.0",
"msw": "^0.47.0"
},
"resolutions": {
"@types/react": "^18",
"@types/react-dom": "^18"
},
"files": [
"dist"
],
"configSchema": {
"$schema": "https://backstage.io/schema/config-v1",
"type": "object",
"properties": {
"opslevel": {
"type": "object",
"properties": {
"frameworks": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of frameworks supported for Opslevel",
"visibility": "frontend"
}
}
}
}
},
"keywords": [
"backstage",
"service maturity",
"service quality",
"maturity score"
],
"description": "This plugin helps you leverage OpsLevel's powerful maturity features with your existing Backstage catalog. An OpsLevel API Key is required to use this plugin.",
"bugs": {
"url": "https://github.com/loadsmart/opslevel-backstage-plugin/issues"
},
"homepage": "https://github.com/loadsmart/opslevel-backstage-plugin#readme",
"directories": {
"doc": "docs"
},
"author": "Developer Productivity Team"
}