2022-12-22 15:01:37 +01:00
|
|
|
{
|
|
|
|
"name": "root",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"private": true,
|
|
|
|
"engines": {
|
2024-04-06 23:18:30 +02:00
|
|
|
"node": "14 || 16 || 20"
|
2022-12-22 15:01:37 +01:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"dev": "concurrently \"yarn start\" \"yarn start-backend\"",
|
|
|
|
"start": "yarn workspace app start",
|
|
|
|
"start-backend": "yarn workspace backend start",
|
|
|
|
"build": "backstage-cli repo build --all",
|
|
|
|
"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": "backstage-cli test",
|
|
|
|
"test:all": "lerna run test -- --coverage",
|
|
|
|
"lint": "backstage-cli repo lint --since origin/master",
|
|
|
|
"lint:all": "backstage-cli repo lint",
|
|
|
|
"prettier:check": "prettier --check .",
|
|
|
|
"create-plugin": "backstage-cli create-plugin --scope internal",
|
|
|
|
"remove-plugin": "backstage-cli remove-plugin"
|
|
|
|
},
|
|
|
|
"workspaces": {
|
|
|
|
"packages": [
|
|
|
|
"packages/*",
|
|
|
|
"plugins/*"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-08-22 01:13:40 +02:00
|
|
|
"@backstage/cli": "^0.27.0",
|
2024-04-06 23:18:30 +02:00
|
|
|
"@spotify/prettier-config": "^15.0.0",
|
2024-09-13 02:03:25 +02:00
|
|
|
"concurrently": "^9.0.0",
|
2024-04-07 02:02:48 +02:00
|
|
|
"lerna": "^8.0.0",
|
2024-04-06 23:18:30 +02:00
|
|
|
"prettier": "^3.0.0",
|
2024-09-13 02:03:25 +02:00
|
|
|
"typescript": "~5.6.0"
|
2022-12-22 15:01:37 +01:00
|
|
|
},
|
|
|
|
"resolutions": {
|
2024-04-07 02:40:51 +02:00
|
|
|
"@types/react": "^18.0.0",
|
|
|
|
"@types/react-dom": "^18.0.0"
|
2022-12-22 15:01:37 +01:00
|
|
|
},
|
|
|
|
"prettier": "@spotify/prettier-config",
|
|
|
|
"lint-staged": {
|
|
|
|
"*.{js,jsx,ts,tsx,mjs,cjs}": [
|
|
|
|
"eslint --fix",
|
|
|
|
"prettier --write"
|
|
|
|
],
|
|
|
|
"*.{json,md}": [
|
|
|
|
"prettier --write"
|
|
|
|
]
|
|
|
|
}
|
2024-04-07 00:17:07 +02:00
|
|
|
}
|