-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.34 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.34 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
{
"name": "root",
"version": "1.0.0",
"private": true,
"engines": {
"node": "22 || 24"
},
"scripts": {
"start": "backstage-cli repo 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",
"test": "backstage-cli repo test",
"test:all": "backstage-cli repo test --coverage",
"test:e2e": "playwright test",
"fix": "backstage-cli repo fix",
"lint": "backstage-cli repo lint --since origin/main",
"lint:all": "backstage-cli repo lint",
"prettier:check": "prettier --check .",
"new": "backstage-cli new"
},
"workspaces": {
"packages": [
"packages/*",
"plugins/*"
]
},
"devDependencies": {
"@backstage/cli": "^0.36.1",
"@backstage/e2e-test-utils": "^0.1.2",
"@jest/environment-jsdom-abstract": "^30.4.1",
"@playwright/test": "^1.60.0",
"@types/jest": "^30.0.0",
"jest": "^30.4.2",
"jsdom": "^29.1.1",
"node-gyp": "^12.3.0",
"prettier": "^3.8.3",
"typescript": "~6.0.3"
},
"resolutions": {
"@types/react": "^18",
"@types/react-dom": "^18",
"jsonpath-plus": ">=10.3.0",
"tough-cookie": ">=4.1.3",
"prismjs": ">=1.30.0",
"koa": ">=3.1.2",
"form-data": ">=4.0.4",
"tmp": ">=0.2.4",
"on-headers": ">=1.1.0",
"@octokit/plugin-paginate-rest": ">=9.2.2",
"@octokit/request": ">=8.4.1",
"@octokit/request-error": ">=5.1.1",
"axios": ">=1.15.0",
"jws": ">=4.0.1",
"qs": ">=6.14.2",
"tar": ">=7.5.11",
"undici": ">=6.24.0",
"fast-xml-parser": ">=5.5.7",
"markdown-it": ">=14.1.1",
"@isaacs/brace-expansion": ">=5.0.1",
"minimatch": ">=10.2.3",
"diff": ">=5.2.2",
"immutable": ">=4.3.8",
"underscore": ">=1.13.8",
"@tootallnate/once": ">=3.0.1",
"file-type": ">=21.3.2",
"dompurify": ">=3.3.2",
"flatted": ">=3.4.2",
"express/path-to-regexp": "0.1.13",
"path-to-regexp": ">=0.1.13"
},
"prettier": "@backstage/cli/config/prettier",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"packageManager": "yarn@4.14.1"
}