forked from janus-idp/backstage-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.31 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
67
{
"name": "root",
"version": "3.4.0",
"private": true,
"engines": {
"node": "20"
},
"scripts": {
"preinstall": "npx only-allow yarn",
"dev": "turbo run start --filter=...app --filter=...backend",
"start:backend": "turbo run start --filter=...backend",
"start:backstage": "turbo run start --filter=...app --filter=...backend",
"start:plugins": "turbo run start --filter=@janus-idp/*",
"start:storybook": "yarn --cwd packages/storybook start",
"build": "turbo run build",
"build:backstage": "turbo run build --filter=...app --filter=...backend",
"build:plugins": "turbo run build --filter=@janus-idp/*",
"build:storybook": "yarn --cwd packages/storybook build",
"tsc": "turbo run tsc",
"clean": "turbo run clean",
"test": "turbo run test",
"lint:check": "turbo run lint:check",
"lint:fix": "turbo run lint:fix",
"lint-staged": "lint-staged -p 10",
"prettier:check": "turbo run prettier:check",
"prettier:fix": "turbo run prettier:fix",
"new": "janus-cli new --do-not-edit-packages",
"prepare": "husky install",
"export-dynamic": "turbo run export-dynamic",
"export-dynamic:clean": "turbo run export-dynamic:clean",
"versions:bump": "backstage-cli versions:bump && find . -name 'package.json' ! -path '*/node_modules/*' -exec sed -i -e '/devDependencies/,/\\\\}/{ s/\\\"\\\\^/\\\"/; }' {} ; && yarn install",
"packages:version": "changeset version",
"packages:publish": "turbo run build --concurrency=75% --filter=@janus-idp/* && changeset publish"
},
"workspaces": {
"packages": [
"packages/*",
"plugins/*"
],
"nohoist": [
"@janus-idp/backstage-plugin-orchestrator",
"@janus-idp/backstage-plugin-orchestrator/@kie-tools/**/!(react|react-dom)"
]
},
"devDependencies": {
"@backstage/cli": "0.27.1",
"@ianvs/prettier-plugin-sort-imports": "4.2.1",
"@janus-idp/cli": "1.15.2",
"@spotify/prettier-config": "15.0.0",
"eslint-plugin-jest": "27.9.0",
"husky": "8.0.3",
"lint-staged": "15.2.7",
"turbo": "2.1.3",
"typescript": "5.4.5",
"@changesets/cli": "2.27.9"
},
"resolutions": {
"@types/react": "^18",
"@types/react-dom": "^18",
"react": "^18",
"react-dom": "^18"
},
"jest": {
"testTimeout": 15000
},
"packageManager": "yarn@1.22.22"
}