-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.16 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
{
"name": "subql-starter",
"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": "subql build",
"codegen": "npx ts-node src/codeGen/generateGraphQlTypes.ts && 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": "jest"
},
"homepage": "https://github.com/subquery/subql-starter",
"repository": "github:subquery/subql-starter",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "SubQuery Team",
"license": "MIT",
"devDependencies": {
"@polkadot/api": "^9",
"@subql/cli": "latest",
"@subql/types": "latest",
"node-fetch": "2.6.7",
"typescript": "^4.1.3"
},
"exports": {
"chaintypes": "src/chaintypes.ts"
},
"dependencies": {
"@encointer/types": "^0.9.0-alpha.3",
"@encointer/util": "^0.9.0-alpha.3",
"@encointer/worker-api": "^0.9.0-alpha.3",
"bs58": "^5.0.0"
}
}