6d9933a4a4
This reverts commit d8928ed2ca.
Signed-off-by: dmckernan <dmckernan@acvauctions.com>
106 lines
3.8 KiB
JSON
106 lines
3.8 KiB
JSON
{
|
|
"name": "root",
|
|
"private": true,
|
|
"engines": {
|
|
"node": "16 || 18"
|
|
},
|
|
"scripts": {
|
|
"dev": "concurrently \"yarn start\" \"yarn start-backend\"",
|
|
"start": "yarn workspace example-app start",
|
|
"start-backend": "yarn workspace example-backend start",
|
|
"build:backend": "yarn workspace backend build",
|
|
"build:all": "backstage-cli repo build --all",
|
|
"build:api-reports": "yarn build:api-reports:only --tsc",
|
|
"build:api-reports:only": "backstage-repo-tools api-reports --allow-warnings 'packages/core-components,plugins/+(catalog|catalog-import|git-release-manager|jenkins|kubernetes)' -o ae-wrong-input-file-type",
|
|
"build:api-docs": "LANG=en_EN yarn build:api-reports --docs",
|
|
"tsc": "tsc",
|
|
"tsc:full": "backstage-cli repo clean && tsc --skipLibCheck false --incremental false",
|
|
"clean": "backstage-cli repo clean",
|
|
"test": "backstage-cli repo test",
|
|
"test:all": "backstage-cli repo test --coverage",
|
|
"lint": "backstage-cli repo lint --since origin/master",
|
|
"lint:docs": "node ./scripts/check-docs-quality",
|
|
"lint:all": "backstage-cli repo lint",
|
|
"lint:type-deps": "backstage-repo-tools type-deps",
|
|
"docker-build": "yarn tsc && yarn workspace example-backend build --build-dependencies && yarn workspace example-backend build-image",
|
|
"new": "backstage-cli new --scope backstage --baseVersion 0.0.0 --no-private",
|
|
"create-plugin": "echo \"use 'yarn new' instead\"",
|
|
"release": "node scripts/prepare-release.js && changeset version && yarn prettier --write '{packages,plugins}/*/{package.json,CHANGELOG.md}' '.changeset/*.json' && yarn install --no-immutable",
|
|
"prettier:check": "prettier --check .",
|
|
"storybook": "yarn ./storybook run start",
|
|
"snyk:test": "npx snyk test --yarn-workspaces --strict-out-of-sync=false",
|
|
"snyk:test:package": "yarn snyk:test --include",
|
|
"build-storybook": "yarn ./storybook run build-storybook",
|
|
"techdocs-cli": "node scripts/techdocs-cli.js",
|
|
"techdocs-cli:dev": "cross-env TECHDOCS_CLI_DEV_MODE=true node scripts/techdocs-cli.js",
|
|
"prepare": "husky install",
|
|
"postinstall": "husky install || true"
|
|
},
|
|
"workspaces": {
|
|
"packages": [
|
|
"packages/*",
|
|
"plugins/*"
|
|
]
|
|
},
|
|
"resolutions": {
|
|
"@types/react": "^17",
|
|
"@types/react-dom": "^17"
|
|
},
|
|
"version": "1.11.0-next.0",
|
|
"dependencies": {
|
|
"@backstage/errors": "workspace:^",
|
|
"@manypkg/get-packages": "^1.1.3"
|
|
},
|
|
"devDependencies": {
|
|
"@backstage/cli": "workspace:*",
|
|
"@backstage/codemods": "workspace:*",
|
|
"@backstage/create-app": "workspace:*",
|
|
"@backstage/repo-tools": "workspace:*",
|
|
"@changesets/cli": "^2.14.0",
|
|
"@octokit/rest": "^19.0.3",
|
|
"@spotify/eslint-plugin": "^14.1.3",
|
|
"@spotify/prettier-config": "^14.0.0",
|
|
"@techdocs/cli": "workspace:*",
|
|
"@types/node": "^16.11.26",
|
|
"@types/webpack": "^5.28.0",
|
|
"command-exists": "^1.2.9",
|
|
"concurrently": "^7.0.0",
|
|
"cross-env": "^7.0.0",
|
|
"e2e-test": "workspace:*",
|
|
"eslint": "^8.6.0",
|
|
"eslint-plugin-notice": "^0.9.10",
|
|
"eslint-plugin-react": "^7.28.0",
|
|
"eslint-plugin-testing-library": "^5.9.1",
|
|
"fs-extra": "10.1.0",
|
|
"husky": "^8.0.0",
|
|
"lint-staged": "^13.0.0",
|
|
"minimist": "^1.2.5",
|
|
"node-gyp": "^9.1.0",
|
|
"prettier": "^2.2.1",
|
|
"semver": "^7.3.2",
|
|
"shx": "^0.3.2",
|
|
"ts-node": "^10.4.0",
|
|
"typescript": "~4.7.0"
|
|
},
|
|
"prettier": "@spotify/prettier-config",
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx,mjs,cjs}": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
],
|
|
"*.{json,md}": [
|
|
"prettier --write"
|
|
],
|
|
"*.md": [
|
|
"node ./scripts/check-docs-quality"
|
|
],
|
|
"./yarn.lock": [
|
|
"node ./scripts/verify-lockfile-duplicates --fix"
|
|
],
|
|
"*/yarn.lock": [
|
|
"node ./scripts/verify-lockfile-duplicates --fix"
|
|
]
|
|
},
|
|
"packageManager": "yarn@3.2.3"
|
|
}
|