forked from muon-protocol/muon-node-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.94 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "muon-node-js",
"version": "1.0.0",
"description": "Muon protocol javascript implementation",
"main": "index.js",
"scripts": {
"help": "node help.js",
"start": "env-cmd node_modules/.bin/ts-node ./src/index.ts",
"start.debug": "env-cmd --use-shell 'DEBUG=libp2p:noise node_modules/.bin/ts-node ./index.ts' ",
"dev": "env-cmd nodemon --exec node_modules/.bin/ts-node ./index.ts",
"devnet-init": "node devnet-generate-envs.js",
"devnet-run": "node devnet-run.js",
"test": "jest --verbose"
},
"jest": {
"collectCoverage": false,
"setupFilesAfterEnv": [
"./__test__/jest.init.js"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"@chainsafe/libp2p-noise": "^6.1.0",
"@ipld/dag-pb": "^2.1.16",
"@libp2p/interface-peer-info": "^1.0.2",
"@nodeutils/defaults-deep": "^1.1.0",
"aegir": "^36.0.0",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"body-parser": "^1.19.0",
"buffer": "^6.0.3",
"chokidar": "^3.5.1",
"cluster": "^0.7.7",
"cors": "^2.8.5",
"delay": "^5.0.0",
"dotenv": "^8.6.0",
"elliptic": "^6.5.4",
"eth-sig-util": "3.0.1",
"ethereum-multicall": "^2.10.0",
"ethers": "^5.1.4",
"events": "^3.3.0",
"events-async": "^1.2.1",
"express": "^4.17.1",
"into-stream": "^6.0.0",
"ipfs-http-client": "^54.0.2",
"it-concat": "^2.0.0",
"it-length-prefixed": "^3.1.0",
"it-pair": "^1.0.0",
"it-pipe": "^1.1.0",
"it-pushable": "^1.4.0",
"libp2p": "0.36.2",
"libp2p-bootstrap": "0.14.0",
"libp2p-gossipsub": "0.13.0",
"libp2p-kad-dht": "0.28.6",
"libp2p-mplex": "0.10.1",
"libp2p-noise": "2.0.5",
"libp2p-pubsub-peer-discovery": "^4.0.0",
"libp2p-secio": "0.13.1",
"libp2p-tcp": "0.17.0",
"libp2p-utils": "^0.4.1",
"libp2p-websockets": "0.16.0",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"mongoose": "^5.12.5",
"multiformats": "^9.6.4",
"node-cache": "^5.1.2",
"nodemon": "^2.0.7",
"prompt-sync": "^4.2.0",
"pull-pushable": "^2.2.0",
"pull-stream": "^3.6.14",
"redis": "^3.1.2",
"tronweb": "^4.1.0",
"uint8arrays": "^3.0.0",
"util": "^0.12.3",
"web3": "^1.3.5",
"ws": "^7.4.5"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/node": "^7.13.13",
"@babel/plugin-proposal-decorators": "^7.13.15",
"@babel/preset-env": "^7.14.1",
"@types/elliptic": "^6.4.14",
"@types/es6-promisify": "^6.0.0",
"@types/express": "^4.0.39",
"@types/node": "^17.0.26",
"@types/node-forge": "^1.0.0",
"@types/varint": "^6.0.0",
"babel-plugin-module-resolver": "^4.1.0",
"chalk": "^4.1.0",
"concurrently": "^6.2.0",
"env-cmd": "^10.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"esbuild": "^0.14.38",
"jest": "^27.0.6",
"node-emoji": "^1.10.0",
"regenerator-runtime": "^0.13.7",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}