-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.18 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.18 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
{
"name": "root",
"version": "0.0.1",
"repository": "git@github.com/radius-project/dashboard.git",
"author": "The Radius Authors",
"private": true,
"packageManager": "yarn@4.13.0",
"engines": {
"node": "24"
},
"scripts": {
"dev": "concurrently \"yarn start\" \"yarn start-backend\"",
"start": "yarn workspace @internal/app start",
"start-backend": "yarn workspace @internal/backend start",
"build:backend": "yarn workspace @internal/backend build",
"build:all": "yarn tsc && backstage-cli repo build --all",
"build-image": "yarn workspace @internal/backend build-image",
"bundle:analyze": "yarn dlx source-map-explorer packages/app/dist/static/*.js",
"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",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,mjs,cjs}\"",
"format:write": "prettier --write \"**/*.{js,jsx,ts,tsx,mjs,cjs}\"",
"new": "backstage-cli new --scope internal"
},
"workspaces": [
"packages/*",
"plugins/*"
],
"devDependencies": {
"@backstage/cli": "^0.36.0",
"@backstage/cli-defaults": "^0.1.0",
"@backstage/e2e-test-utils": "^0.1.2",
"@internal/app": "workspace:^",
"@module-federation/enhanced": "^2.2.3",
"@playwright/test": "^1.58.2",
"@spotify/prettier-config": "^15.0.0",
"concurrently": "^9.2.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"node-gyp": "^12.2.0",
"prettier": "^3.8.1",
"typescript": "~5.9.3"
},
"resolutions": {
"@types/react": "^18",
"@types/react-dom": "^18",
"@backstage/backend-common": "^0.25.0",
"esbuild": "^0.27.4",
"jsonpath-plus": "^10.3.0",
"mysql2": "^3"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}