This repository has been archived by the owner on Dec 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
68 lines (68 loc) · 2.19 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
{
"name": "root",
"version": "1.0.0",
"private": true,
"engines": {
"node": "20 || 22"
},
"scripts": {
"dev": "yarn workspaces foreach -A --include @procore-oss/backstage-plugin-announcements-backend --include @procore-oss/backstage-plugin-announcements --parallel -v -i run start",
"start": "yarn workspace @procore-oss/backstage-plugin-announcements start",
"start-backend": "yarn workspace @procore-oss/backstage-plugin-announcements-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",
"new": "backstage-cli new --scope internal",
"fix": "backstage-cli repo fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "backstage-cli repo lint --since origin/main",
"lint:all": "backstage-cli repo lint",
"version-packages": "changeset version && yarn install && (git commit -am 'Update internal dependencies' || true)",
"release": "changeset publish",
"knip": "knip",
"prepare": "husky",
"postinstall": "husky || true",
"validate": "yarn format && yarn lint && yarn tsc && yarn test"
},
"workspaces": {
"packages": [
"plugins/**"
]
},
"devDependencies": {
"@backstage/cli": "^0.29.2",
"@changesets/cli": "^2.27.8",
"@spotify/prettier-config": "^15.0.0",
"@types/webpack": "^5.28.5",
"husky": "^9.1.6",
"knip": "^5.30.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"typescript": "~5.6.2"
},
"resolutions": {
"@types/react": "^18",
"@types/react-dom": "^18"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yaml,yml}": [
"prettier --write"
]
},
"packageManager": "[email protected]"
}