-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2 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
{
"name": "root",
"version": "1.0.0",
"private": true,
"engines": {
"node": "20 || 22"
},
"scripts": {
"start": "backstage-cli repo 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",
"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",
"prettier:check": "prettier --check .",
"new": "backstage-cli new",
"prepare": "husky"
},
"workspaces": {
"packages": [
"packages/*",
"plugins/*"
]
},
"devDependencies": {
"@backstage/cli": "backstage:^",
"@backstage/e2e-test-utils": "backstage:^",
"@eslint/js": "^9.26.0",
"@playwright/test": "^1.32.3",
"@spotify/eslint-plugin": "^15.0.0",
"@spotify/prettier-config": "^12.0.0",
"@typescript-eslint/parser": "^8.35.0",
"concurrently": "^8.0.0",
"eslint": "^8.6.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-testing-library": "^6.0.0",
"husky": "^9.1.1",
"jest": "29",
"jest-environment-jsdom": "29",
"lerna": "^7.3.0",
"lint-staged": "^15.2.7",
"node-gyp": "^10.0.0",
"prettier": "^2.3.2",
"typescript": "^5.8.3"
},
"resolutions": {
"@types/react": "^18",
"@types/react-dom": "^18",
"isolated-vm": "6.0.2",
"csv-stringify@npm:^5.6.5": "patch:csv-stringify@npm%3A5.6.5#~/.yarn/patches/csv-stringify-npm-5.6.5-b69ac1da11.patch"
},
"prettier": "@backstage/cli/config/prettier",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yaml,yml}": [
"prettier --write"
]
},
"packageManager": "yarn@4.4.1"
}