forked from K-Phoen/backstage-plugin-confluence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.49 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
{
"name": "@k-phoen/backstage-plugin-confluence",
"version": "0.0.15",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "MIT",
"homepage": "https://github.com/K-Phoen/backstage-plugin-confluence",
"bugs": {
"url": "https://github.com/K-Phoen/backstage-plugin-confluence/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/K-Phoen/backstage-plugin-confluence.git",
"directory": "plugins/search-confluence"
},
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts"
},
"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"
},
"dependencies": {
"@backstage/core-components": "^0.12.4",
"@backstage/core-plugin-api": "^1.4.0",
"@backstage/plugin-search-common": "^1.2.1",
"@backstage/plugin-search-react": "^1.5.0",
"@material-ui/core": "^4.12.2"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0",
"react-dom": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.22.3",
"@backstage/dev-utils": "^1.0.12",
"@testing-library/jest-dom": "^5.10.1",
"node-fetch": "^2.6.1"
},
"files": [
"dist"
]
}