-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@backstage/cli": "^0.36.0",
"@backstage/cli-defaults": "^0.1.0",
"@biomejs/biome": "^2.4.9",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"is-ci": "^4.1.0",
"lefthook": "^2.1.4",
"lerna": "^9.0.7",
"markdown-toc": "^1.2.0",
"typescript": "~6.0.2"
},
"engines": {
"node": ">=24.0.0"
},
"volta": {
"node": "24.14.1"
},
"scripts": {
"type": "tsc --noEmit",
"style:lint": "biome check packages",
"style:lint-fix": "biome check --write packages",
"style:format": "biome format --write packages",
"build": "tsc && backstage-cli repo build --all",
"bootstrap": "npx lerna bootstrap",
"publish:ci": "lerna publish from-package --yes --no-private --pre-dist-tag alpha",
"test": "lerna run test:ci",
"start": "npx lerna --scope @immobiliarelabs/backstage-plugin-gitlab run start",
"version:release": "lerna version --yes --conventional-commits --no-private --conventional-graduate --create-release github --message 'chore(release): publish'",
"version:prerelease": "lerna version --yes --force-publish --no-private --conventional-commits --conventional-prerelease --create-release github --message 'chore(prerelease): publish'",
"postinstall": "node prepare.js || echo 'Skipping prepare'",
"prepare": "node prepare.js || echo 'Skipping prepare'"
},
"packageManager": "yarn@4.3.1"
}