forked from redhat-developer/rhdh-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.77 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
{
"name": "@internal/dcm",
"version": "1.0.0",
"private": true,
"engines": {
"node": "22 || 24"
},
"scripts": {
"start": "concurrently -c auto -n \"fe,be\" -p \"{name}:{pid}\" \"yarn start-app\" \"yarn start-backend\"",
"start-app": "yarn workspace app start",
"start-backend": "yarn workspace backend start",
"start:fe-plugin": "yarn workspace @red-hat-developer-hub/backstage-plugin-dcm start",
"start:be-plugin": "yarn workspace @red-hat-developer-hub/backstage-plugin-dcm-backend start",
"start:dev": "concurrently -c auto -n \"fe,be\" -p \"{name}:{pid}\" \"yarn start:fe-plugin\" \"yarn start:be-plugin\"",
"tsc": "tsc",
"tsc:full": "tsc --skipLibCheck true --incremental false",
"build:all": "backstage-cli repo build --all",
"build:api-reports": "yarn build:api-reports:only --tsc",
"build:api-reports:only": "backstage-repo-tools api-reports -o ae-wrong-input-file-type,ae-missing-release-tag,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",
"e2e-test": "playwright test",
"e2e-test:live": "playwright test --project=live"
},
"workspaces": {
"packages": [
"packages/*",
"plugins/*"
]
},
"repository": {
"type": "git",
"url": "https://github.com/redhat-developer/rhdh-plugins",
"directory": "workspaces/dcm"
},
"packageManager": "yarn@4.15.0",
"devDependencies": {
"@backstage/cli": "^0.35.2",
"@backstage/e2e-test-utils": "^0.1.1",
"@backstage/repo-tools": "^0.16.2",
"@changesets/cli": "^2.27.1",
"@playwright/test": "1.60.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.0.0",
"@types/webpack-env": "^1.18.4",
"concurrently": "^9.0.0",
"knip": "^5.27.4",
"node-gyp": "^9.0.0",
"prettier": "^2.3.2",
"typescript": "~5.3.0"
},
"resolutions": {
"isolated-vm": "6.1.2",
"better-sqlite3": "^12.0.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"fsevents": "~2.3.2",
"@backstage/backend-app-api": "1.4.1",
"@backstage/backend-plugin-api": "1.6.2"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"dependencies": {
"yup": "^1.7.1"
}
}