-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
88 lines (88 loc) · 2.59 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
82
83
84
85
86
87
88
{
"name": "hopr",
"author": {
"name": "Validity Labs AG",
"email": "info@validitylabs.org",
"url": "https://validitylabs.org"
},
"version": "0.3.0",
"description": "Privacy-preserving messaging protocol with incentivations for relay operators",
"license": "GPL-3.0-only",
"keywords": [
"privacy",
"web3",
"messaging"
],
"engines": {
"node": "^11",
"yarn": "^1.19.0"
},
"homepage": "https://hopr.network",
"repository": {
"type": "git",
"url": "https://github.com/validitylabs/hopr.git"
},
"scripts": {
"demo": "node test/demo.js",
"multiprocess": "node test/multiprocess.js",
"hopr": "node hopr.js",
"deployContract": "node test/deployContract",
"startTestnet": "node test/startBlockchain",
"createForTest": "node test/createFor",
"createFor": "node test/stakeFor"
},
"dependencies": {
"@nodeutils/defaults-deep": "~1.1.0",
"blake2": "~4.0.0",
"bs58": "^4.0.1",
"chacha": "~2.1.0",
"chalk": "~2.4.2",
"cids": "~0.7.1",
"class-is": "~1.1.0",
"dotenv": "~8.1.0",
"dotenv-expand": "~5.1.0",
"ethereumjs-tx": "~2.1.1",
"futoin-hkdf": "~1.2.1",
"getopts": "~2.2.4",
"heap": "~0.2.6",
"ip-address": "^6.1.0",
"leveldown": "~5.2.1",
"levelup": "~4.3.0",
"libp2p": "~0.26.2",
"libp2p-crypto": "~0.17.0",
"libp2p-crypto-secp256k1": "~0.4.0",
"libp2p-kad-dht": "robertkiel/js-libp2p-kad-dht",
"libp2p-mplex": "~0.8.5",
"libp2p-tcp": "~0.13.0",
"libp2p-websockets": "0.12.2",
"lodash.foreachright": "~4.4.0",
"lodash.groupby": "~4.6.0",
"lodash.unionwith": "~4.6.0",
"multihashes": "~0.4.15",
"openzeppelin-solidity": "~2.3.0",
"peer-id": "~0.13.3",
"peer-info": "~0.16.2",
"promise-queue": "~2.2.5",
"prompt": "~1.0.0",
"protons": "^1.0.1",
"pull-defer": "~0.2.3",
"pull-length-prefixed": "~1.3.3",
"pull-paramap": "~1.2.2",
"pull-pushable": "~2.2.0",
"read": "~1.0.7",
"rlp": "~2.2.3",
"scrypt": "~6.0.3",
"secp256k1": "~3.7.0",
"simple-peer": "~9.6.0",
"solc": "~0.5.12",
"web3": "1.2.1",
"webrtc-stun": "^3.0.0",
"wrtc": "~0.4.2",
"xor-distance": "~2.0.0"
},
"devDependencies": {
"axios": "^0.19.0",
"eslint": "~6.1.0",
"ganache-core": "~2.8.0"
}
}