-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.93 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.93 KB
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
{
"name": "smoothly_cli",
"version": "1.0.0",
"description": "Oracle api for Rewards Smoothing Protocol smart contracts.",
"author": "Noah Figueras",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"start": "NODE_NO_WARNINGS=1 ts-node ./src/index.ts",
"build": "npx tsc",
"test": "./scripts/test.sh"
},
"type": "module",
"bin": {
"smoothly_cli": "./scripts/start.sh"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/eventsource": "^1.1.9",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"esm": "^3.2.25",
"mocha": "^10.2.0",
"typescript": "^4.8.3"
},
"dependencies": {
"@chainsafe/libp2p-gossipsub": "^10.0.0",
"@chainsafe/libp2p-noise": "^12.0.1",
"@chainsafe/libp2p-yamux": "^5.0.0",
"@ethereumjs/rlp": "^4.0.0",
"@ethereumjs/trie": "^5.0.0",
"@ethereumjs/util": "^8.0.2",
"@libp2p/bootstrap": "^9.0.2",
"@libp2p/crypto": "^2.0.2",
"@libp2p/floodsub": "^8.0.3",
"@libp2p/interface": "^0.1.1",
"@libp2p/interface-peer-id": "^2.0.2",
"@libp2p/kad-dht": "^10.0.0",
"@libp2p/mdns": "^9.0.4",
"@libp2p/mplex": "^8.0.3",
"@libp2p/peer-id": "^3.0.2",
"@libp2p/peer-id-factory": "^3.0.2",
"@libp2p/pubsub-peer-discovery": "^8.0.4",
"@libp2p/tcp": "^7.0.1",
"@libp2p/websockets": "^6.0.1",
"@multiformats/multiaddr": "^12.1.3",
"@openzeppelin/merkle-tree": "^1.0.4",
"@pinata/sdk": "^2.1.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/node-cron": "^3.0.4",
"commander": "^10.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"ethers": "^5.7.1",
"eventsource": "^2.0.2",
"express": "^4.18.2",
"ganache": "^7.7.7",
"global": "^4.4.0",
"it-pipe": "^3.0.1",
"keccak256": "^1.0.6",
"level": "^8.0.0",
"libp2p": "^0.46.3",
"multihashes": "^4.0.3",
"node-cron": "^3.0.2",
"ts-node": "^10.9.1",
"winston": "^3.10.0"
}
}