forked from subquery/cosmos-subql-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 958 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
{
"name": "cosmos-subquery-starter",
"version": "0.0.1",
"description": "This project can be use as a starting point for developing your Cosmos (Juno) based SubQuery project",
"main": "dist/index.js",
"scripts": {
"build": "subql build",
"prepack": "rm -rf dist && npm build",
"test": "jest",
"codegen": "subql codegen",
"start:docker": "docker-compose pull && docker-compose up --remove-orphans"
},
"homepage": "https://github.com/subquery/cosmos-subql-starter",
"repository": "github:subquery/cosmos-subql-starter",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "SubQuery Team",
"license": "MIT",
"devDependencies": {
"@cosmjs/stargate": "^0.28.9",
"@subql/cli": "^1.1.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@subql/types-cosmos": "^0.1.0",
"@types/node": "^17.0.21",
"pino": "^7.8.0",
"ts-proto": "^1.112.1",
"tslib": "^2.3.1"
}
}