forked from hoprnet/hoprnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 3.25 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
{
"name": "hoprnet",
"repository": "https://github.com/hoprnet/hoprnet",
"workspaces": [
"packages/core",
"packages/core-ethereum",
"packages/utils",
"packages/hoprd",
"packages/real"
],
"scripts": {
"build:core": "yarn workspace @hoprnet/hopr-core run build",
"build:core:all": "yarn workspaces foreach -ptv --include @hoprnet/hopr-core --include @hoprnet/hopr-core-ethereum run build",
"build:hoprd": "yarn workspace @hoprnet/hoprd run build",
"build:utils": "yarn workspace @hoprnet/hopr-utils run build",
"build:chain": "yarn workspace @hoprnet/hopr-core-ethereum run build",
"run:hoprd": "yarn workspace @hoprnet/hoprd run start --password='d3f4uL+!' --identity=/tmp/default-identity --disableApiAuthentication",
"run:hoprd:xdai": "yarn workspace @hoprnet/hoprd run start --host=0.0.0.0:9080 --apiPort=2991 --password='xDai' --announce --data=/tmp/xdai --identity=/tmp/xdai-identity --disableApiAuthentication",
"run:hoprd:xdai:protected": "yarn workspace @hoprnet/hoprd run start --host=0.0.0.0:9080 --apiPort=2991 --password='xDai' --announce --data=/tmp/xdai --identity=/tmp/xdai-identity --apiToken=xD4!-N3+w0rK",
"run:hoprd:staging": "yarn workspace @hoprnet/hoprd run start --host=0.0.0.0:9060 --apiPort=2971 --password='staging' --announce --data=/tmp/staging --identity=/tmp/staging-identity --disableApiAuthentication",
"run:hoprd:staging:protected": "yarn workspace @hoprnet/hoprd run start --host=0.0.0.0:9060 --apiPort=2971 --password='staging' --announce --data=/tmp/staging --identity=/tmp/staging-identity --apiToken=g03rL!-N3+w0rK",
"run:hoprd:alice": "yarn workspace @hoprnet/hoprd run dev --host=0.0.0.0:9092 --apiPort=3011 --data=/tmp/local-alice --identity=/tmp/local-alice.id",
"run:hoprd:bob": "yarn workspace @hoprnet/hoprd run dev --host=0.0.0.0:9093 --apiPort=3021 --data=/tmp/local-bob --identity=/tmp/local-bob.id",
"run:hoprd:charlie": "yarn workspace @hoprnet/hoprd run dev --host=0.0.0.0:9094 --apiPort=3031 --data=/tmp/local-charlie --identity=/tmp/local-charly.id",
"clean": "yarn workspaces foreach --exclude hoprnet -v run clean && rm -Rf ./tsconfig.scripts.tsbuildinfo ./tsconfig.build.tsbuildinfo",
"reset": "rm -Rf packages/*/node_modules node_modules"
},
"devDependencies": {
"@types/node": "18",
"prettier": "2.8.8",
"solhint-community": "3.6.1",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"resolutions": {
"@ethersproject/providers": "https://github.com/hoprnet/ethers-js-provider/archive/refs/tags/v5.7.0-fixed-memory-leak.tar.gz",
"@libp2p/kad-dht": "https://github.com/hoprnet/js-libp2p-kad-dht/archive/refs/tags/v1.0.17.tar.gz",
"@overnightjs/logger": "1.2.1",
"@multiformats/multiaddr": "10.3.3",
"colors": "1.4.0",
"it-length-prefixed": "https://github.com/hoprnet/it-length-prefixed/archive/refs/tags/v7.0.3.tar.gz",
"[email protected]": "patch:libp2p@npm%3A0.37.3#./.yarn/patches/libp2p-npm-0.37.3-ae5be411f2.patch",
"@libp2p/peer-store@^1.0.10": "patch:@libp2p/peer-store@npm%3A1.0.17#./.yarn/patches/@libp2p-peer-store-npm-1.0.17-714b0c0ec5.patch"
},
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 120,
"trailingComma": "none"
},
"packageManager": "[email protected]"
}