-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
81 lines (81 loc) · 2.29 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "root",
"version": "0.1.8",
"private": true,
"engines": {
"node": "18 || 20"
},
"scripts": {
"dev": "concurrently \"yarn start\" \"yarn start-backend\"",
"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",
"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",
"lint:type-deps": "backstage-repo-tools type-deps",
"prettier:check": "prettier --check .",
"new": "backstage-cli new --scope internal"
},
"workspaces": {
"packages": [
"packages/*",
"plugins/*"
]
},
"devDependencies": {
"@backstage/cli": "^0.27.1",
"@backstage/e2e-test-utils": "^0.1.1",
"@backstage/repo-tools": "^0.9.7",
"@playwright/test": "^1.32.3",
"@spotify/eslint-plugin": "^15.0.0",
"@spotify/prettier-config": "^15.0.0",
"concurrently": "^8.0.0",
"eslint": "^8.6.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-testing-library": "^5.9.1",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.0",
"lerna": "^7.3.0",
"lint-staged": "^13.0.0",
"node-gyp": "^9.0.0",
"prettier": "^3.3.3",
"typescript": "~5.3.0"
},
"resolutions": {
"@types/react": "^18",
"@types/react-dom": "^18"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
],
"*.md": [
"prettier --write",
"node ./scripts/check-docs-quality"
],
"yarn.lock": [
"node ./scripts/verify-lockfile-duplicates --fix"
]
},
"dependencies": {
"@backstage/catalog-model": "^1.7.0",
"@backstage/plugin-catalog-react": "^1.13.1",
"@hookform/resolvers": "^3.3.2",
"react-redux": "^9.1.0"
},
"packageManager": "[email protected]"
}