first commit (from template)
parents
.dockerignore
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.prettierignore
0 → 100644
README.md
0 → 100644
app-config.production.yaml
0 → 100644
app-config.yaml
0 → 100644
catalog-info.yaml
0 → 100644
lerna.json
0 → 100644
package.json
0 → 100644
{ | ||
"name": "root", | ||
"version": "1.0.0", | ||
"private": true, | ||
"engines": { | ||
"node": "12 || 14" | ||
}, | ||
"scripts": { | ||
"dev": "concurrently \"yarn start\" \"yarn start-backend\"", | ||
"start": "yarn workspace app start", | ||
"start-backend": "yarn workspace backend start", | ||
"build": "lerna run build", | ||
"build-image": "yarn workspace backend build-image", | ||
"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:all": "lerna run lint --", | ||
"prettier:check": "prettier --check .", | ||
"create-plugin": "backstage-cli create-plugin --scope internal --no-private", | ||
"remove-plugin": "backstage-cli remove-plugin" | ||
}, | ||
"resolutions": { | ||
"graphql-language-service-interface": "2.8.2", | ||
"graphql-language-service-parser": "1.9.0" | ||
}, | ||
"workspaces": { | ||
"packages": [ | ||
"packages/*", | ||
"plugins/*" | ||
] | ||
}, | ||
"devDependencies": { | ||
"@backstage/cli": "^0.7.11", | ||
"@spotify/prettier-config": "^7.0.0", | ||
"concurrently": "^6.0.0", | ||
"lerna": "^4.0.0", | ||
"prettier": "^2.3.2" | ||
}, | ||
"prettier": "@spotify/prettier-config", | ||
"lint-staged": { | ||
"*.{js,jsx,ts,tsx}": [ | ||
"eslint --fix", | ||
"prettier --write" | ||
], | ||
"*.{json,md}": [ | ||
"prettier --write" | ||
] | ||
}, | ||
"jest": { | ||
"transformModules": [ | ||
"@asyncapi/react-component" | ||
] | ||
} | ||
} |
packages/app/.eslintrc.js
0 → 100644
packages/app/cypress.json
0 → 100644
packages/app/package.json
0 → 100644
13.3 KB
12.3 KB
883 Bytes
1.65 KB
14.7 KB