-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 4.23 KB
/
package.json
File metadata and controls
133 lines (133 loc) · 4.23 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "root",
"version": "1.0.0",
"private": true,
"engines": {
"node": "18 || 20 || 22"
},
"scripts": {
"dev": "yarn workspaces foreach -A --include backend --include app --parallel -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",
"tsc:e2e": "tsc --project tsconfig.e2e.json",
"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 .",
"new": "backstage-cli new --scope internal",
"prepare": "husky",
"e2e": "playwright test",
"e2e:ui": "yarn e2e --ui",
"e2e:config:platform-token": "envsubst '${TENANT_APP_URL} ${PLATFORM_TOKEN}' < e2e/app-config.platform-token.template > app-config.local.yaml",
"e2e:config:oauth": "envsubst '${TENANT_APP_URL} ${OAUTH_CLIENT_ID} ${OAUTH_CLIENT_SECRET} ${OAUTH_ACCOUNT_URN} ${OAUTH_TOKEN_URL}' < e2e/app-config.oauth.template > app-config.local.yaml",
"e2e:platform-token": "yarn e2e:config:platform-token && yarn tsc:e2e && yarn e2e",
"e2e:oauth": "yarn e2e:config:oauth && yarn tsc:e2e && yarn e2e",
"e2e:install-browsers": "playwright install chromium --with-deps",
"audit": "yarn npm audit --recursive --severity=high"
},
"jest": {
"testPathIgnorePatterns": [
"packages"
],
"setupFiles": [
"<rootDir>/../../../jest.polyfills.js"
],
"testEnvironmentOptions": {
"customExportConditions": [
""
]
}
},
"workspaces": {
"packages": [
"packages/*",
"plugins/*"
]
},
"devDependencies": {
"@backstage/cli": "^0.35.3",
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@commitlint/config-lerna-scopes": "^20.0.0",
"@playwright/test": "^1.58.2",
"@spotify/prettier-config": "^15.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"@types/node": "^22.0.0",
"@typescript-eslint/parser": "^7.0.0",
"concurrently": "^8.0.0",
"eslint-plugin-header": "^3.1.1",
"husky": "^9.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"lerna": "^9.0.5",
"lint-staged": "^15.0.1",
"node-gyp": "^10.0.0",
"prettier": "^2.0.0",
"typescript": "~5.9.0"
},
"resolutions": {
"@types/react": "^18",
"@types/react-dom": "^18",
"@opentelemetry/api": "1.9.0",
"@backstage/backend-plugin-api": "1.7.0",
"@backstage/plugin-scaffolder-backend": "3.1.5",
"lodash": ">=4.18.1",
"lodash-es": ">=4.18.1",
"basic-ftp": "5.3.0",
"multer": "2.1.1",
"underscore": "1.13.8",
"axios": "1.15.1",
"koa": "2.16.4",
"minimatch@npm:^3.0.4": "3.1.4",
"minimatch@npm:^3.0.5": "3.1.4",
"minimatch@npm:^3.1.1": "3.1.4",
"minimatch@npm:^3.1.2": "3.1.4",
"minimatch@npm:^5.0.1": "5.1.8",
"minimatch@npm:^5.1.0": "5.1.8",
"minimatch@npm:^7.4.3": "7.4.8",
"minimatch@npm:^9.0.4": "9.0.7",
"minimatch@npm:^9.0.5": "9.0.7",
"minimatch@npm:^10.1.1": "10.2.3",
"markdown-it@npm:^12.2.0": "13.0.2",
"form-data@npm:~2.3.2": "2.5.4",
"jsonpath-plus@npm:^7.2.0": "10.3.0",
"@backstage/plugin-techdocs-node@npm:^1.14.2": "1.14.3",
"rollup": "4.59.0",
"elliptic": "6.6.1",
"fast-xml-parser": "5.7.0",
"qs": "6.15.0",
"bfj": "9.1.3",
"svgo@npm:^2.7.0": "2.8.2",
"tar": "7.5.11",
"immutable": "4.3.8",
"flatted": "^3.4.2",
"undici": "^7.22.0",
"protobufjs": "^7.5.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dynatrace/backstage-plugin.git"
},
"dependencies": {
"@types/webpack-env": "1.18.8",
"better-sqlite3": "^12.6.2"
},
"packageManager": "yarn@4.12.0"
}