This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.71 KB
/
package.json
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": "@liatrio/backstage-github-autogov-plugin",
"version": "1.2.5",
"repository": {
"type": "git",
"url": "git+https://github.com/liatrio/backstage-github-autogov-plugin.git"
},
"license": "MIT",
"devDependencies": {
"@backstage/cli": "^0.27.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.4",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.3",
"@semantic-release/release-notes-generator": "^12.1.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"lerna": "^8.1.9",
"typescript": "^5.6.3"
},
"workspaces": [
"backstage-plugin-*"
],
"dependencies": {
"husky": "^9.1.6",
"node-fetch": "^3.3.2"
},
"scripts": {
"build": "backstage-cli repo build --all",
"lint": "backstage-cli repo lint",
"lint:all": "yarn lint && yarn prettier:check",
"install:all:local": "yarn --cwd backstage-plugin-autogov-common install --immutable && yarn --cwd backstage-plugin-github-releases-assets-backend install --immutable && yarn --cwd backstage-plugin-github-releases-autogov install --immutable",
"test:all": "yarn install:all:local && yarn tsc:full && yarn --cwd backstage-plugin-autogov-common test --all --no-watch && yarn --cwd backstage-plugin-github-releases-assets-backend test --all --no-watch && yarn --cwd backstage-plugin-github-releases-autogov test --all --no-watch",
"prettier:check": "npx --yes prettier --check .",
"prettier:fix": "npx --yes prettier --write .",
"tsc:full": "tsc --skipLibCheck true --incremental false",
"prepare": "husky",
"clean": "backstage-cli repo clean"
},
"packageManager": "yarn@4.4.1"
}