-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.2 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
47
48
49
50
51
{
"name": "subql_ternoa",
"version": "1.0",
"description": "Ternoa Indexer: Indexes main events triggered by the Ternoa blockchain",
"main": "dist/index.js",
"scripts": {
"build": "tsc -b",
"prepack": "rm -rf dist && npm run build",
"test": "jest",
"format": "prettier --write \"src/**/*.ts\"",
"codegen": "./node_modules/.bin/subql codegen",
"start": "bash run.sh",
"start:docker": "docker-compose pull && docker-compose up --remove-orphans"
},
"homepage": "https://github.com/capsule-corp-ternoa/ternoa-subql",
"repository": "github:capsule-corp-ternoa/ternoa-subql",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "ternoa",
"contributors": [
{
"name": "Ghali Leouarz"
},
{
"name": "Igor Papandinas"
},
{
"name": "Victor Salomon"
}
],
"license": "MIT",
"dependencies": {
"bn.js": "5.2.1",
"node-fetch": "2.6.x",
"ternoa-js": "1.5.1"
},
"devDependencies": {
"@polkadot/api": "10.7.x",
"@subql/cli": "1.13.x",
"@subql/common": "1.8.x",
"@subql/types": "1.7.x",
"prettier": "2.8.x",
"typescript": "5.0.x"
},
"engines": {
"node": ">=16.13.0"
}
}