This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
56 lines (56 loc) · 1.7 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "aws-proton-plugins-for-backstage",
"description": "AWS Proton Plugins for Backstage",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "github:awslabs/aws-proton-plugins-for-backstage"
},
"license": "Apache-2.0",
"author": {
"name": "Amazon Web Services",
"url": "http://aws.amazon.com"
},
"private": true,
"workspaces": {
"packages": [
"plugins/*"
]
},
"engines": {
"node": ">=16 <=19"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"tsc": "tsc",
"build": "backstage-cli repo build --all",
"clean": "backstage-cli repo clean",
"test": "backstage-cli test --watchAll=false",
"lint": "backstage-cli repo lint",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"ci": "lerna bootstrap && tsc && backstage-cli repo build --all && backstage-cli test --watchAll=false && backstage-cli repo lint && prettier --check .",
"start:frontend": "yarn workspace @aws/aws-proton-plugin-for-backstage start",
"start:backend": "yarn workspace @aws/aws-proton-backend-plugin-for-backstage start",
"bump-version": "lerna version",
"publish-version": "lerna publish from-package --yes --no-verify-access",
"yarn:audit:fix": "yarn-audit-fix"
},
"devDependencies": {
"@backstage/cli": "^0.22.8",
"@spotify/prettier-config": "^14.0.0",
"@types/react": "^17.0.0",
"lerna": "^6.6.2",
"prettier": "^3.0.3",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"typescript": "~5.3.2",
"yarn-audit-fix": "^10.0.1"
},
"resolutions": {
"**/yaml": "^2.2.2"
},
"prettier": "@spotify/prettier-config"
}