forked from subquery/avalanche-subql-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "avalanche-subql-starter",
"version": "0.0.1",
"description": "This project can be use as a starting point for developing your new Avalanche SubQuery project",
"main": "dist/index.js",
"scripts": {
"build": "subql build",
"prepack": "rm -rf dist && npm build",
"test": "jest",
"codegen": "./node_modules/.bin/subql codegen",
"start:docker": "docker-compose pull && docker-compose up --remove-orphans"
},
"homepage": "https://github.com/subquery/avalanche-subql-starter",
"repository": "github:subquery/avalanche-subql-starter",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "SubQuery Team",
"license": "MIT",
"dependencies": {
"@pangolindex/exchange-contracts": "^1.0.2",
"@polkadot/api": "^8",
"@subql/common": "latest",
"@subql/validator": "latest",
"assert": "^2.0.0"
},
"devDependencies": {
"@subql/cli": "latest",
"@subql/types": "latest",
"@subql/types-avalanche": "dev",
"typescript": "4.5.5"
}
}