-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 2.02 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
57
58
59
60
61
62
63
64
65
66
{
"name": "backstage-plugin-s3",
"description": "S3 Viewer Plugins for Backstage",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "https://github.com/spreadshirt/backstage-plugin-s3"
},
"license": "Apache-2.0",
"author": {
"name": "Spreadshirt"
},
"private": true,
"workspaces": {
"packages": [
"packages/*",
"plugins/*"
]
},
"scripts": {
"dev": "yarn workspaces foreach -A --include backend --include app --parallel -v -i run start",
"tsc": "tsc",
"tsc:full": "tsc --skipLibCheck true --incremental false",
"build:all": "backstage-cli repo build --all",
"clean": "backstage-cli repo clean",
"test": "backstage-cli repo test",
"test:all": "backstage-cli repo test --coverage",
"fix": "backstage-cli repo fix",
"lint": "backstage-cli repo lint --since origin/main",
"lint:all": "backstage-cli repo lint",
"ci": "yarn install && tsc && yarn build:all && yarn test && yarn lint",
"start": "yarn workspace app start",
"start-backend": "yarn workspace backend start",
"release": "changeset version && yarn prettier --write 'plugins/*/{package.json,CHANGELOG.md}' '.changeset/*.json' && yarn install",
"publish-release": "changeset publish",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"npm:release": "yarn install && tsc && yarn build:all && changeset publish"
},
"devDependencies": {
"@backstage/cli": "^0.28.0",
"@changesets/cli": "^2.27.9",
"@spotify/prettier-config": "^15.0.0",
"concurrently": "^8.0.0",
"prettier": "^2.4.1",
"react": "^18.0.2",
"react-dom": "^18.0.2",
"react-router-dom": "^6.3.0",
"typescript": "~5.4.0"
},
"resolutions": {
"@types/react": "^18",
"@types/react-dom": "^18"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"packageManager": "[email protected]"
}