-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.63 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.63 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
{
"name": "@internal/bulk-import",
"version": "1.0.0",
"private": true,
"engines": {
"node": "22 || 24"
},
"scripts": {
"start": "NODE_OPTIONS=--no-node-snapshot backstage-cli repo start",
"start:legacy": "NODE_OPTIONS=--no-node-snapshot backstage-cli repo start backend app-legacy",
"tsc": "tsc",
"tsc:full": "tsc --skipLibCheck true --incremental false",
"build:all": "backstage-cli repo build --all",
"build:api-reports": "yarn build:api-reports:only",
"build:api-reports:only": "backstage-repo-tools api-reports -o ae-wrong-input-file-type,ae-undocumented --validate-release-tags",
"build:knip-reports": "backstage-repo-tools knip-reports",
"clean": "backstage-cli repo clean",
"test": "backstage-cli repo test",
"test:all": "backstage-cli repo test --coverage",
"fix": "backstage-cli repo fix",
"lint": "backstage-cli repo lint --since origin/main",
"lint:all": "backstage-cli repo lint",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"new": "backstage-cli new --scope @red-hat-developer-hub",
"postinstall": "cd ../../ && yarn install",
"test:e2e:legacy": "APP_MODE=legacy playwright test",
"test:e2e:nfs": "APP_MODE=nfs playwright test",
"test:e2e:all": "yarn test:e2e:legacy && yarn test:e2e:nfs",
"playwright": "bash -c 'if [[ \"$@\" == test ]]; then yarn test:e2e:all; else npx playwright \"$@\"; fi' _"
},
"workspaces": {
"packages": [
"packages/*",
"plugins/*"
]
},
"repository": {
"type": "git",
"url": "https://github.com/redhat-developer/rhdh-plugins",
"directory": "workspaces/bulk-import"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.0",
"@backstage/cli": "^0.36.3",
"@backstage/e2e-test-utils": "^0.1.2",
"@backstage/repo-tools": "^0.17.3",
"@changesets/cli": "^2.27.1",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@jest/environment-jsdom-abstract": "^30.3.0",
"@playwright/test": "1.60.0",
"@spotify/prettier-config": "^12.0.0",
"@types/jest": "^30.0.0",
"@types/jsdom": "^27.0.0",
"jest": "^30.3.0",
"jsdom": "^27.1.0",
"knip": "^5.27.4",
"node-gyp": "^9.0.0",
"prettier": "^3.4.2",
"typescript": "~5.8.0"
},
"resolutions": {
"@types/react": "^18",
"@types/react-dom": "^18",
"refractor@npm:3.6.0/prismjs": "^1.30.0",
"@backstage/frontend-plugin-api": "0.15.1",
"@backstage/plugin-catalog": "2.0.1",
"@backstage/plugin-scaffolder": "1.36.1",
"@backstage/ui": "0.14.3",
"@backstage/plugin-catalog-backend": "3.5.0",
"@backstage/plugin-catalog-backend-module-scaffolder-entity-model": "0.2.18",
"@backstage/backend-plugin-api": "1.8.0",
"@backstage/backend-openapi-utils": "0.6.7",
"@backstage/plugin-catalog-node": "2.1.0",
"@backstage/plugin-events-node": "0.4.20",
"@backstage/plugin-permission-node": "0.10.11",
"@backstage/core-compat-api": "0.5.9",
"@backstage/core-plugin-api": "1.12.4",
"@backstage/plugin-app-react": "0.2.1",
"@backstage/plugin-catalog-react": "2.1.0",
"@backstage/plugin-scaffolder-react": "1.20.0",
"@backstage/plugin-catalog-graph": "0.6.0",
"@backstage/plugin-catalog-import": "0.13.11",
"@backstage/plugin-org": "0.7.0",
"@backstage/plugin-search-react": "1.11.0",
"@backstage/plugin-search": "1.7.0",
"@backstage/plugin-techdocs-react": "1.3.9",
"@backstage/plugin-techdocs": "1.17.2"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}