|
| 1 | +{ |
| 2 | + "name": "@internal/boost", |
| 3 | + "version": "1.0.0", |
| 4 | + "private": true, |
| 5 | + "engines": { |
| 6 | + "node": "22 || 24" |
| 7 | + }, |
| 8 | + "scripts": { |
| 9 | + "start": "backstage-cli repo start", |
| 10 | + "build:all": "backstage-cli repo build --all", |
| 11 | + "build:api-reports": "yarn build:api-reports:only --tsc", |
| 12 | + "build:api-reports:only": "backstage-repo-tools api-reports -o ae-wrong-input-file-type,ae-undocumented --validate-release-tags", |
| 13 | + "build:knip-reports": "backstage-repo-tools knip-reports", |
| 14 | + "tsc": "tsc", |
| 15 | + "tsc:full": "tsc --skipLibCheck true --incremental false", |
| 16 | + "clean": "backstage-cli repo clean", |
| 17 | + "test": "backstage-cli repo test", |
| 18 | + "test:all": "yarn prettier:check && yarn lint:all && backstage-cli repo test --coverage", |
| 19 | + "fix": "backstage-cli repo fix", |
| 20 | + "lint": "backstage-cli repo lint --since origin/main", |
| 21 | + "lint:all": "backstage-cli repo lint", |
| 22 | + "prettier:check": "prettier --check .", |
| 23 | + "prettier:fix": "prettier --write .", |
| 24 | + "chores": "yarn prettier:fix && yarn lint:all --fix && yarn tsc:full && yarn build:api-reports && yarn test:all", |
| 25 | + "new": "backstage-cli new --scope @red-hat-developer-hub", |
| 26 | + "postinstall": "cd ../../ && yarn install" |
| 27 | + }, |
| 28 | + "workspaces": { |
| 29 | + "packages": [ |
| 30 | + "packages/*", |
| 31 | + "plugins/*" |
| 32 | + ] |
| 33 | + }, |
| 34 | + "repository": { |
| 35 | + "type": "git", |
| 36 | + "url": "https://github.com/redhat-developer/rhdh-plugins", |
| 37 | + "directory": "workspaces/boost" |
| 38 | + }, |
| 39 | + "devDependencies": { |
| 40 | + "@backstage/cli": "^0.34.5", |
| 41 | + "@backstage/e2e-test-utils": "^0.1.1", |
| 42 | + "@backstage/repo-tools": "^0.16.0", |
| 43 | + "@changesets/cli": "^2.27.1", |
| 44 | + "knip": "^5.27.4", |
| 45 | + "node-gyp": "^9.0.0", |
| 46 | + "prettier": "^3.7.4", |
| 47 | + "typescript": "^5.9.0" |
| 48 | + }, |
| 49 | + "resolutions": { |
| 50 | + "@types/react": "^18", |
| 51 | + "@types/react-dom": "^18" |
| 52 | + }, |
| 53 | + "prettier": "@backstage/cli/config/prettier", |
| 54 | + "lint-staged": { |
| 55 | + "*.{js,jsx,ts,tsx,mjs,cjs}": [ |
| 56 | + "eslint --fix", |
| 57 | + "prettier --write" |
| 58 | + ], |
| 59 | + "*.{json,md}": [ |
| 60 | + "prettier --write" |
| 61 | + ] |
| 62 | + }, |
| 63 | + "maintainers": [ |
| 64 | + "@durandom", |
| 65 | + "@gabemontero" |
| 66 | + ] |
| 67 | +} |
0 commit comments