-
Notifications
You must be signed in to change notification settings - Fork 0
/
rush.json
51 lines (43 loc) · 1.08 KB
/
rush.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
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush.schema.json",
"rushVersion": "5.56.0",
"pnpmVersion": "6.23.2",
"pnpmOptions": {
strictPeerDependencies: true
},
"nodeSupportedVersionRange": ">=14.17.0",
"ensureConsistentVersions": true,
"repository": {
"url": "https://github.com/EthWorks/statemine-asset-creator",
"defaultBranch": "main",
"defaultRemote": "origin"
},
"eventHooks": {
"preRushInstall": [],
"postRushInstall": [],
"preRushBuild": [],
"postRushBuild": []
},
"projects": [
{
"packageName": "eslint-config-statemine",
"projectFolder": "tools/eslint-config-statemine"
},
{
"packageName": "test-helpers",
"projectFolder": "libraries/test-helpers"
},
{
"packageName": "use-substrate",
"projectFolder": "libraries/use-substrate"
},
{
"packageName": "statemine-asset-creator",
"projectFolder": "packages/app"
},
{
"packageName": "local-statemint-launch",
"projectFolder": "tools/local-statemint-launch"
}
]
}