-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
35 lines (35 loc) · 982 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
{
"name": "avail-indexer",
"version": "1.0.0",
"description": "Indexer for the various Avail chains",
"main": "dist/index.js",
"scripts": {
"build": "subql build",
"codegen": "subql codegen",
"start:docker": "docker-compose pull && docker-compose up --remove-orphans",
"dev": "subql codegen && subql build && docker-compose pull && docker-compose up --remove-orphans",
"prepack": "rm -rf dist && npm run build",
"test": "subql build && subql-node test"
},
"homepage": "/~https://github.com/availproject/avail-indexer",
"repository": "github:availproject/avail-indexer",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "Leouarz",
"devDependencies": {
"@polkadot/api": "^12",
"@subql/cli": "5.2.8",
"@subql/node": "5.2.7",
"@subql/types": "3.11.2",
"typescript": "^5.3.3"
},
"resolutions": {
"ipfs-unixfs": "6.0.6"
},
"exports": {
"chaintypes": "./src/chaintypes.ts"
}
}