forked from janus-idp/backstage-showcase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.92 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
{
"name": "root",
"version": "1.4.0",
"private": true,
"engines": {
"node": "20"
},
"scripts": {
"prepare": "husky install",
"start": "turbo run build --filter=app && NODE_OPTIONS=--no-node-snapshot turbo run start --filter=backend",
"start-backend": "turbo run start --filter=backend",
"dev": "NODE_OPTIONS=--no-node-snapshot turbo run start --filter=backend --filter=app",
"build": "turbo run build",
"tsc": "turbo run tsc",
"export-dynamic": "turbo run export-dynamic",
"export-dynamic:clean": "turbo run export-dynamic:clean",
"copy-dynamic-plugins": "yarn --cwd dynamic-plugins/_utils run copy-dynamic-plugins",
"clean": "turbo run clean",
"test": "turbo run test",
"lint:check": "turbo run lint:check",
"lint:fix": "turbo run lint:fix",
"lint": "turbo run lint",
"lint-staged": "lint-staged -p 10",
"prettier:check": "turbo run prettier:check",
"prettier:fix": "turbo run prettier:fix",
"new": "backstage-cli new --scope internal",
"versions:bump": "backstage-cli versions:bump --pattern @{backstage,backstage-community,janus-idp,roadiehq,immobiliarelabs,pagerduty,parfuemerie-douglas}/*",
"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/*",
"e2e-tests"
]
},
"devDependencies": {
"@backstage/cli": "0.27.1",
"@ianvs/prettier-plugin-sort-imports": "4.2.1",
"@spotify/prettier-config": "15.0.0",
"husky": "8.0.3",
"lint-staged": "15.2.10",
"node-gyp": "10.2.0",
"turbo": "2.2.3",
"typescript": "5.6.2"
},
"resolutions": {
"@types/react": "18.3.7",
"@types/react-dom": "18.3.0"
},
"jest": {
"testTimeout": 20000
},
"packageManager": "[email protected]"
}