-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
96 lines (96 loc) · 2.91 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
93
94
95
96
{
"name": "@liatrio/backstage-dora-plugin",
"version": "0.0.37",
"main": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
"description": "A Backstage plugin for DORA metrics",
"keywords": [
"backstage",
"dora",
"plugin",
"metrics"
],
"publishConfig": {
"access": "public"
},
"backstage": {
"role": "frontend-plugin",
"pluginId": "dora-metrics",
"pluginPackages": [
"@liatrio/backstage-dora-plugin"
]
},
"repository": {
"type": "git",
"url": "https://github.com/liatrio/backstage-dora-plugin.git"
},
"configSchema": "config.d.ts",
"sideEffects": false,
"scripts": {
"start": "backstage-cli package start",
"build": "backstage-cli package build",
"lint": "backstage-cli package lint",
"lint:all": "yarn lint && yarn prettier:check",
"test": "backstage-cli package test",
"clean": "backstage-cli package clean",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack",
"prettier:check": "npx --yes prettier --check .",
"prettier:fix": "npx --yes prettier --write .",
"tsc:full": "tsc --skipLibCheck true --incremental false",
"prepare": "husky"
},
"dependencies": {
"@backstage/core-components": "^0.14.3",
"@backstage/core-plugin-api": "^1.9.1",
"@backstage/plugin-catalog-react": "^1.12.3",
"@backstage/theme": "^0.5.2",
"@liatrio/react-dora-charts": "^1.1.8",
"@material-ui/core": "^4.9.13",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.61",
"@mui/material": "^6.1.0",
"react-datepicker": "^7.3.0",
"react-dropdown": "^1.11.0",
"react-tooltip": "^5.28.0",
"react-use": "^17.2.4",
"recharts": "^2.12.7"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.26.0",
"@backstage/core-app-api": "^1.12.3",
"@backstage/dev-utils": "^1.0.26",
"@backstage/test-utils": "^1.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.4",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.3",
"@semantic-release/release-notes-generator": "^12.1.0",
"@spotify/prettier-config": "^15.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^15.0.0",
"@testing-library/user-event": "^14.0.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"husky": "^9.1.6",
"msw": "^1.0.0",
"pinst": "^3.0.0",
"react": "^18.0.2",
"react-dom": "^18.0.2",
"react-router-dom": "^6.3.0",
"semantic-release": "^22.0.12"
},
"files": [
"dist",
"dist-types",
"config.d.ts",
"LICENSE"
],
"module": "./dist/index.esm.js",
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610",
"prettier": "@spotify/prettier-config"
}