-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.41 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.41 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "root",
"version": "1.0.0",
"private": true,
"engines": {
"node": "22"
},
"scripts": {
"dev": "yarn workspaces foreach -A --include backend --include app --parallel --jobs unlimited -v -i run start",
"start": "yarn workspace app start",
"start-backend": "yarn workspace backend start",
"build:backend": "yarn workspace backend build",
"build:all": "backstage-cli repo build --all",
"build-image": "yarn workspace backend build-image",
"tsc": "tsc",
"tsc:full": "tsc --skipLibCheck false --incremental false",
"clean": "backstage-cli repo clean",
"fix": "backstage-cli repo fix",
"lint": "backstage-cli repo lint --since origin/main",
"lint:all": "backstage-cli repo lint",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"new": "backstage-cli new",
"ci//": "echo Installs dependencies without modifying the lockfile.\n`yarn rebuild` was added because folders are randomly missing, this command fixes it.",
"ci": "yarn install --immutable && yarn rebuild",
"iup//": "echo 'Interactive upgrade of dependencies (do not touch packages with `backstage:^?)'",
"iup": "yarn upgrade-interactive",
"cup//": "echo Custom UPdate - Install without lockfile forces yarn to look for latest version within ranges",
"cup": "rm -f yarn.lock && yarn install",
"backstage:upgrade": "backstage-cli versions:bump",
"pipeline//": "echo Shorthand to run all checks in the lint.yml pipeline/workflow",
"pipeline": "yarn run ci && yarn run prettier:check && yarn run lint:all && yarn run tsc",
"self-update//": "Upgrade package manager to the latest version",
"self-update": "corepack up",
"clean-cache": "yarn cache clean --all",
"prepare": "husky"
},
"workspaces": {
"packages": [
"packages/*",
"plugins/*"
]
},
"devDependencies": {
"@backstage/cli": "backstage:^",
"@jest/environment-jsdom-abstract": "^30.2.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.9",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"lerna": "^9.0.3",
"lint-staged": "^16.2.7",
"prettier": "^3.8.0",
"typescript": "^5.9.3"
},
"resolutions": {
"@types/react": "^18",
"@types/react-dom": "^18",
"@mui/material": "5.16.4",
"jsonpath-plus": "^10.2.0",
"jws": "^4.0.1",
"tar": "^7.5.7",
"linkifyjs": "^4.3.2",
"qs": "^6.14.2",
"koa": "^2.16.4",
"fast-xml-parser": "^5.3.8",
"markdown-it": "^14.1.1",
"jsonpath": "^1.2.0",
"diff@npm:^4.0.1": "4.0.4",
"diff@^5.0.0": "5.2.2",
"lodash": "^4.17.23",
"lodash-es": "^4.17.23",
"prismjs": "^1.30.0",
"@backstage/cli-common": "^0.1.17",
"basic-ftp": "^5.2.0",
"multer": "^2.1.1",
"svgo": "^2.8.1",
"underscore": "^1.13.8",
"rollup": "^4.59.0",
"dompurify": "^3.3.2",
"@tootallnate/once": "^3.0.1",
"immutable": "^4.3.8",
"undici": "^6.23.0"
},
"prettier": "@backstage/cli/config/prettier",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"dependencies": {
"@mui/material": "^6.1.5",
"@types/react": "^18"
},
"packageManager": "yarn@4.9.1+sha512.f95ce356460e05be48d66401c1ae64ef84d163dd689964962c6888a9810865e39097a5e9de748876c2e0bf89b232d583c33982773e9903ae7a76257270986538"
}