forked from CronCats/indexer-cosmjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 877 Bytes
/
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
{
"name": "croncat-js-indexer",
"version": "0.0.1",
"description": "NodeJS script to get capture blocks and transactions related to CronCat",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"blockchain",
"croncat",
"indexer",
"cosmjs",
"cosmwasm"
],
"author": "Mike Purvis",
"license": "MIT",
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.29.4",
"@cosmjs/crypto": "^0.29.4",
"@cosmjs/encoding": "^0.29.4",
"@cosmjs/proto-signing": "^0.29.4",
"@cosmjs/tendermint-rpc": "^0.29.4",
"cosmjs-types": "^0.5.2",
"dotenv": "^16.0.3",
"knex": "^2.3.0",
"node-fetch": "2.6.7",
"pg": "^8.8.0"
},
"devDependencies": {
"@types/node": "^18.11.7",
"typescript": "^4.8.4"
}
}