-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrush.json
More file actions
36 lines (36 loc) · 962 Bytes
/
rush.json
File metadata and controls
36 lines (36 loc) · 962 Bytes
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
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush.schema.json",
"rushVersion": "5.128.0",
"pnpmVersion": "9.2.0",
"nodeSupportedVersionRange": ">=18.20.3 <19.0.0 || >=20.9.0 <21.0.0",
"gitPolicy": {},
"repository": {
"url": "git@github.com:fguini/server-messages-example.git",
"defaultBranch": "main",
"defaultRemote": "origin"
},
"eventHooks": {
"preRushInstall": [
// "common/scripts/pre-rush-install.js"
],
"postRushInstall": [],
"preRushBuild": [],
"postRushBuild": [],
"preRushx": [],
"postRushx": []
},
"projects": [
{
"packageName": "the-server",
"projectFolder": "packages/the-server",
"reviewCategory": "production",
"tags": [ "node", "express", "server" ]
},
{
"packageName": "the-client",
"projectFolder": "packages/the-client",
"reviewCategory": "production",
"tags": [ "react", "client" ]
}
]
}