forked from janus-idp/backstage-showcase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.13 KB
/
package.json
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
{
"name": "root",
"version": "1.2.0",
"private": true,
"engines": {
"node": "18 || 20"
},
"scripts": {
"prepare": "husky install",
"ci": "turbo run lint build test",
"start": "turbo run start --parallel",
"start-backend": "turbo run start --filter=backend",
"build": "turbo run build",
"tsc": "tsc",
"export-dynamic": "turbo run export-dynamic --concurrency 1",
"copy-dynamic-plugins": "yarn --cwd dynamic-plugins/_utils run copy-dynamic-plugins",
"clean": "turbo run clean",
"test": "turbo run test",
"fix": "backstage-cli repo fix",
"lint": "turbo run lint",
"lint-staged": "lint-staged",
"prettier:check": "prettier --ignore-unknown --check .",
"prettier:fix": "prettier --ignore-unknown --write .",
"new": "backstage-cli new --scope internal",
"git:tag": "cross-var git tag -a v$npm_package_version -m \"Release v$npm_package_version\"",
"versions:bump": "backstage-cli versions:bump --pattern @{backstage,roadiehq,immobiliarelabs,janus-idp,pagerduty}/*",
"versions:metadata": "node ./scripts/update-metadata.mjs",
"versions:all": "node ./scripts/update-backstage.mjs"
},
"workspaces": {
"packages": [
"packages/*",
"plugins/*",
"dynamic-plugins/_utils",
"dynamic-plugins/imports",
"dynamic-plugins/wrappers/*"
]
},
"dependencies": {
"node-gyp": "9.4.1"
},
"devDependencies": {
"@backstage/cli": "0.26.4",
"@smithy/util-utf8": "2.3.0",
"@spotify/prettier-config": "15.0.0",
"cross-var": "1.1.0",
"husky": "8.0.3",
"ip": "1.1.9",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"sanitize-html": "2.13.0",
"turbo": "1.13.3",
"typescript": "5.4.5",
"undici": "5.28.4"
},
"resolutions": {
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18"
},
"jest": {
"testTimeout": 20000
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"*": "turbo run prettier:fix --",
"*.{jsx,ts,tsx,mjs,cjs}": "turbo run lint --concurrency=1 -- --fix",
"!(.eslintrc).js": "turbo run lint --concurrency=1 -- --fix"
},
"packageManager": "[email protected]"
}