bdf1419d20
* add new toolkit component Signed-off-by: Emma Indal <emmai@spotify.com> * add toolkit content test Signed-off-by: Emma Indal <emmai@spotify.com> * add key to toolkit items Signed-off-by: Emma Indal <emmai@spotify.com> * add reusable company logo component Signed-off-by: Emma Indal <emmai@spotify.com> * export root ref from search plugin Signed-off-by: Emma Indal <emmai@spotify.com> * add homepage template to storybook Signed-off-by: Emma Indal <emmai@spotify.com> * export new homepage components from plugin Signed-off-by: Emma Indal <emmai@spotify.com> * fix imports Signed-off-by: Emma Indal <emmai@spotify.com> * add search plugin to dependencies Signed-off-by: Emma Indal <emmai@spotify.com> * add home plugin changeset Signed-off-by: Emma Indal <emmai@spotify.com> * add storybook changeset Signed-off-by: Emma Indal <emmai@spotify.com> * delete changeset for storybook Signed-off-by: Emma Indal <emma.indahl@gmail.com> * delete duplicated search context provider Signed-off-by: Emma Indal <emmai@spotify.com> * use list item text props Signed-off-by: Emma Indal <emmai@spotify.com> * update home plugin documentation + add customize app docs Signed-off-by: Emma Indal <emmai@spotify.com> * named exports Signed-off-by: Emma Indal <emmai@spotify.com> * add homepage components to storybook Signed-off-by: Emma Indal <emmai@spotify.com> * use app config as default for company logo Signed-off-by: Emma Indal <emmai@spotify.com> * rename homepage template Signed-off-by: Emma Indal <emmai@spotify.com> * use props instead of context for tools, update Content component of card extension to accept props Signed-off-by: Emma Indal <emmai@spotify.com> * fix api reports + docstrings + markers Signed-off-by: Emma Indal <emmai@spotify.com> * export ToolkitContentProps instead of Tool Signed-off-by: Emma Indal <emmai@spotify.com> * docs and stories fixups Signed-off-by: Emma Indal <emmai@spotify.com> * do not export rootRouteRef from search plugin Signed-off-by: Emma Indal <emmai@spotify.com> * update docs links Signed-off-by: Emma Indal <emmai@spotify.com> * change unpacking of props Signed-off-by: Emma Indal <emmai@spotify.com> * delete extra fragment Signed-off-by: Emma Indal <emmai@spotify.com> * fixup searchbar border styles Signed-off-by: Emma Indal <emmai@spotify.com>
56 lines
1.6 KiB
JSON
56 lines
1.6 KiB
JSON
{
|
|
"name": "@backstage/plugin-home",
|
|
"description": "A Backstage plugin that helps you build a home page",
|
|
"version": "0.4.9",
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"license": "Apache-2.0",
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"main": "dist/index.esm.js",
|
|
"types": "dist/index.d.ts"
|
|
},
|
|
"scripts": {
|
|
"build": "backstage-cli plugin:build",
|
|
"start": "backstage-cli plugin:serve",
|
|
"lint": "backstage-cli lint",
|
|
"test": "backstage-cli test",
|
|
"diff": "backstage-cli plugin:diff",
|
|
"prepack": "backstage-cli prepack",
|
|
"postpack": "backstage-cli postpack",
|
|
"clean": "backstage-cli clean"
|
|
},
|
|
"dependencies": {
|
|
"@backstage/core-components": "^0.8.3",
|
|
"@backstage/core-plugin-api": "^0.4.1",
|
|
"@backstage/theme": "^0.2.14",
|
|
"@backstage/plugin-search": "^0.5.1",
|
|
"@material-ui/core": "^4.12.2",
|
|
"@material-ui/icons": "^4.9.1",
|
|
"@material-ui/lab": "4.0.0-alpha.57",
|
|
"lodash": "^4.17.21",
|
|
"react-router": "6.0.0-beta.0",
|
|
"react-use": "^17.2.4"
|
|
},
|
|
"peerDependencies": {
|
|
"@types/react": "^16.13.1 || ^17.0.0",
|
|
"react": "^16.13.1 || ^17.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@backstage/cli": "^0.10.5",
|
|
"@backstage/core-app-api": "^0.3.1",
|
|
"@backstage/dev-utils": "^0.2.16",
|
|
"@backstage/test-utils": "^0.2.1",
|
|
"@testing-library/jest-dom": "^5.10.1",
|
|
"@testing-library/react": "^11.2.5",
|
|
"@testing-library/user-event": "^13.1.8",
|
|
"@types/jest": "^26.0.7",
|
|
"@types/node": "^14.14.32",
|
|
"cross-fetch": "^3.0.6",
|
|
"msw": "^0.35.0"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|