forked from redhat-developer/rhdh
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.39 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.39 KB
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
69
70
{
"name": "root",
"version": "1.10.0",
"private": true,
"engines": {
"node": "22"
},
"scripts": {
"prepare": "husky install",
"start": "NODE_OPTIONS=--no-node-snapshot turbo run start --filter=backend",
"dev": "NODE_OPTIONS=--no-node-snapshot turbo run start --filter=backend --filter=app",
"build": "turbo run build",
"build:dockerfile": "bash ./scripts/update-Dockerfile.sh",
"tsc": "turbo run tsc",
"export-dynamic": "echo \"Command moved to dynamic-plugins/package.json\"",
"export-dynamic:clean": "echo \"Command moved to dynamic-plugins/package.json\"",
"copy-dynamic-plugins": "echo \"Command moved to dynamic-plugins/package.json\"",
"clean": "turbo run clean",
"test": "turbo run test",
"lint:check": "turbo run lint:check",
"lint:fix": "turbo run lint:fix",
"lint": "turbo run lint",
"monorepo:check": "sherif && manypkg check",
"monorepo:fix": "sherif --fix --no-install && manypkg fix && yarn dedupe",
"lint-staged": "lint-staged -p 10",
"prettier:check": "turbo run prettier:check",
"prettier:fix": "turbo run prettier:fix",
"new": "backstage-cli new --scope internal",
"repo:fix": "backstage-cli repo fix --publish",
"versions:metadata": "node ./scripts/update-metadata.mjs",
"versions:bump": "node ./scripts/update-backstage.mjs",
"rulesync:generate": "rulesync generate",
"rulesync:import:cursor": "rulesync import --targets cursor",
"rulesync:import:claude": "rulesync import --targets claudecode"
},
"workspaces": {
"packages": [
"packages/*",
"plugins/*"
]
},
"devDependencies": {
"@backstage/cli": "0.35.4",
"@backstage/frontend-test-utils": "0.5.0",
"@ianvs/prettier-plugin-sort-imports": "4.7.1",
"@jest/environment-jsdom-abstract": "30.2.0",
"@manypkg/cli": "0.25.1",
"@types/jest": "30.0.0",
"glob": "11.1.0",
"husky": "8.0.3",
"jest": "30.2.0",
"jsdom": "27.4.0",
"lint-staged": "15.5.2",
"node-gyp": "10.3.1",
"rulesync": "3.34.0",
"sherif": "1.10.0",
"turbo": "2.8.10"
},
"resolutions": {
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"@aws-sdk/util-utf8-browser": "npm:@smithy/util-utf8@~2",
"@kubernetes/client-node@npm:0.20.0/jsonpath-plus": "^10.3.0",
"refractor@npm:3.6.0/prismjs": "^1.30.0"
},
"jest": {
"testTimeout": 20000
},
"packageManager": "yarn@4.12.0"
}