-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.47 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
{
"name": "root",
"version": "1.0.0",
"private": true,
"engines": {
"node": "22 || 24"
},
"scripts": {
"start": "NODE_OPTIONS=--no-node-snapshot backstage-cli repo start",
"start-backend": "yarn workspace backend start",
"start-backend:ci": "yarn workspace backend backstage-cli package build && node packages/backend",
"start:ci": "concurrently \"yarn start\" \"yarn start-backend:ci\"",
"build:backend": "yarn workspace backend build",
"build:all": "backstage-cli repo build --all",
"build-image": "yarn workspace backend build-image",
"build": "yarn build:all",
"tsc": "tsc",
"tsc:full": "tsc --skipLibCheck false --incremental false",
"clean": "backstage-cli repo clean",
"test": "NODE_OPTIONS=--no-node-snapshot backstage-cli repo test --workerIdleMemoryLimit=800M --coverage --runInBand",
"test:all": "NODE_OPTIONS=--no-node-snapshot lerna run test -- --coverage --runInBand",
"test:e2e": "NODE_OPTIONS=--no-node-snapshot playwright test",
"fix": "backstage-cli repo fix",
"lint": "backstage-cli repo lint --since origin/main",
"lint:all": "backstage-cli repo lint",
"prettier:check": "prettier --check .",
"create-plugin": "backstage-cli new --scope segment --no-private",
"remove-plugin": "backstage-cli remove-plugin",
"prepare": "husky install"
},
"workspaces": {
"packages": [
"packages/*",
"plugins/*"
]
},
"devDependencies": {
"@backstage/cli": "^0.36.4",
"@backstage/e2e-test-utils": "^0.1.2",
"@jest/environment-jsdom-abstract": "~30.2.0",
"@playwright/test": "^1.32.3",
"@types/jest": "^30.0.0",
"concurrently": "^8.0.0",
"husky": "^8.0.3",
"lerna": "^9.0.0",
"jest": "~30.2.0",
"lint-staged": "^15.0.2",
"node-gyp": "^10.0.0",
"prettier": "^2.3.2",
"typescript": "~5.8.0"
},
"resolutions": {
"@types/react": "^18",
"@types/react-dom": "^18",
"@azure/storage-blob": "12.17.0"
},
"prettier": "@backstage/cli/config/prettier",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"backstage": {
"cli": {
"new": {
"globals": {
"license": "Apache-2.0",
"private": false,
"namePrefix": "@segment/",
"namePluginInfix": "backstage-plugin-"
}
}
}
},
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}