forked from bobo-k2/astar-subql-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 821 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
{
"name": "astar-subql-demo",
"version": "1.0.0",
"description": "This project can be used as a starting point for developing your SubQuery project",
"main": "dist/index.js",
"scripts": {
"build": "tsc -b",
"prepack": "rm -rf dist && npm run build",
"test": "jest",
"codegen": "./node_modules/.bin/subql codegen",
"start:docker": "docker-compose pull && docker-compose up"
},
"homepage": "https://github.com/subquery/subql-starter",
"repository": "github:subquery/subql-starter",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "Bobo K.",
"license": "MIT",
"devDependencies": {
"@polkadot/api": "^8",
"@subql/types": "latest",
"typescript": "^4.1.3",
"@subql/cli": "latest"
},
"resolutions": {
"ipfs-unixfs": "6.0.6"
}
}