forked from ping-pub/faucet
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "faucet",
"type": "module",
"version": "1.0.0",
"description": "Faucet for Cosmos-SDK blockchains",
"main": "faucet.js",
"scripts": {
"start": "node --experimental-modules --es-module-specifier-resolution=node faucet.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ping-pub/faucet.git"
},
"keywords": [
"Faucet",
"Cosmos",
"SDK",
"blockchain"
],
"author": "Ping",
"license": "MIT",
"bugs": {
"url": "https://github.com/ping-pub/faucet/issues"
},
"homepage": "https://github.com/ping-pub/faucet#readme",
"dependencies": {
"@cosmjs/crypto": "^0.32",
"@cosmjs/encoding": "^0.32",
"@cosmjs/proto-signing": "^0.32",
"@cosmjs/stargate": "^0.32",
"@ethersproject/wallet": "^5.7.0",
"@hanchon/evmos-ts-wallet": "^0.2.0",
"@tharsis/transactions": "^0.2.6",
"async-mutex": "^0.5.0",
"bech32": "^2.0.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.9",
"ethers": "^5.7.1",
"evmosjs": "0.3.3",
"express": "^4.18.2",
"level": "^8.0.0",
"nodemodule": "^0.3.0",
"uuid": "^10.0.0"
}
}