0e01938e80
This removes unnecessary dependencies in the library Signed-off-by: Juan Lulkin <jmaiz@spotify.com>
92 lines
3.1 KiB
JSON
92 lines
3.1 KiB
JSON
{
|
|
"name": "root",
|
|
"private": true,
|
|
"engines": {
|
|
"node": "12 || 14"
|
|
},
|
|
"scripts": {
|
|
"dev": "concurrently \"yarn start\" \"yarn start-backend\"",
|
|
"start": "yarn workspace example-app start",
|
|
"start-backend": "yarn workspace example-backend start",
|
|
"build": "lerna run build",
|
|
"build:api-reports": "tsc && yarn build:api-reports:only",
|
|
"build:api-reports:only": "ts-node -T -P scripts/tsconfig.json scripts/api-extractor.ts",
|
|
"build:api-docs": "yarn build:api-reports --docs",
|
|
"tsc": "tsc",
|
|
"tsc:full": "tsc --skipLibCheck false --incremental false",
|
|
"clean": "backstage-cli clean && lerna run clean",
|
|
"diff": "lerna run diff --",
|
|
"test": "lerna run test --since origin/master -- --coverage",
|
|
"test:all": "lerna run test -- --coverage",
|
|
"lint": "lerna run lint --since origin/master --",
|
|
"lint:docs": "node ./scripts/check-docs-quality",
|
|
"lint:all": "lerna run lint --",
|
|
"lint:type-deps": "node scripts/check-type-dependencies.js",
|
|
"docgen": "lerna run docgen",
|
|
"docker-build": "yarn tsc && yarn workspace example-backend build --build-dependencies && yarn workspace example-backend build-image",
|
|
"create-plugin": "backstage-cli create-plugin --scope backstage --no-private",
|
|
"remove-plugin": "backstage-cli remove-plugin",
|
|
"release": "changeset version && yarn diff --yes && yarn prettier --write '{packages,plugins}/*/{package.json,CHANGELOG.md}' && yarn install",
|
|
"prettier:check": "prettier --check .",
|
|
"lerna": "lerna",
|
|
"storybook": "yarn workspace storybook start",
|
|
"build-storybook": "yarn workspace storybook build-storybook",
|
|
"prepare": "husky install",
|
|
"lock:check": "yarn-lock-check"
|
|
},
|
|
"workspaces": {
|
|
"packages": [
|
|
"packages/*",
|
|
"plugins/*"
|
|
]
|
|
},
|
|
"resolutions": {
|
|
"**/@roadiehq/**/@backstage/core": "*",
|
|
"**/@roadiehq/**/@backstage/plugin-catalog": "*",
|
|
"**/@roadiehq/**/@backstage/catalog-model": "*",
|
|
"**/@microsoft/api-extractor/typescript": "^4.0.3",
|
|
"graphql-language-service-interface": "2.8.2",
|
|
"graphql-language-service-parser": "1.9.0"
|
|
},
|
|
"version": "1.0.0",
|
|
"dependencies": {
|
|
"@microsoft/api-documenter": "^7.12.16",
|
|
"@microsoft/api-extractor": "7.13.2-pr1916.0",
|
|
"@microsoft/api-extractor-model": "^7.12.5"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/cli": "^2.14.0",
|
|
"@octokit/openapi-types": "^2.2.0",
|
|
"@spotify/prettier-config": "^10.0.0",
|
|
"command-exists": "^1.2.9",
|
|
"concurrently": "^6.0.0",
|
|
"eslint-plugin-notice": "^0.9.10",
|
|
"fs-extra": "^9.0.0",
|
|
"husky": "^6.0.0",
|
|
"lerna": "^4.0.0",
|
|
"lint-staged": "^10.1.0",
|
|
"prettier": "^2.2.1",
|
|
"recursive-readdir": "^2.2.2",
|
|
"shx": "^0.3.2",
|
|
"yarn-lock-check": "^1.0.5"
|
|
},
|
|
"prettier": "@spotify/prettier-config",
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx}": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
],
|
|
"*.{json,md}": [
|
|
"prettier --write"
|
|
],
|
|
"*.md": [
|
|
"node ./scripts/check-docs-quality"
|
|
]
|
|
},
|
|
"jest": {
|
|
"transformModules": [
|
|
"@asyncapi/react-component"
|
|
]
|
|
}
|
|
}
|