-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
68 lines (68 loc) · 2.52 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
68
{
"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",
"ui-test": "turbo run ui-test --concurrency 1",
"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",
"versions:bump": "node ./scripts/update-backstage.mjs",
"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.28.2",
"@changesets/cli": "2.27.9",
"@ianvs/prettier-plugin-sort-imports": "4.2.1",
"@janus-idp/cli": "*",
"@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"
},
"resolutions": {
"@types/react": "^18",
"@types/react-dom": "^18",
"react": "^18",
"react-dom": "^18",
"@backstage/[email protected]": "patch:@backstage/backend-dynamic-feature-service@npm%3A0.4.3#./.yarn/patches/@backstage-backend-dynamic-feature-service-npm-0.4.3-2650d84cc8.patch",
"@backstage/backend-dynamic-feature-service@^0.4.3": "patch:@backstage/backend-dynamic-feature-service@npm%3A0.4.3#./.yarn/patches/@backstage-backend-dynamic-feature-service-npm-0.4.3-2650d84cc8.patch"
},
"jest": {
"testTimeout": 15000
},
"packageManager": "[email protected]"
}