-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "turing-subql",
"version": "0.0.4",
"description": "Any queries for subquery for OAK's Turing network",
"main": "dist/index.js",
"scripts": {
"build": "tsc -b",
"prepack": "rm -rf dist && npm build",
"test": "./node_modules/.bin/subql build && subql-node test",
"codegen": "./node_modules/.bin/subql codegen",
"clean": "rm -rf .data",
"go": "./node_modules/.bin/subql codegen && tsc -b && docker-compose pull && docker-compose up"
},
"homepage": "https://github.com/subquery/neumann-subql",
"repository": "github:subquery/neumann-subql",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "OAK Network",
"license": "MIT",
"devDependencies": {
"@polkadot/api": "^10",
"@polkadot/api-contract": "^10.7.1",
"@subql/cli": "latest",
"@subql/node": "latest",
"@subql/testing": "latest",
"@subql/types": "latest",
"typescript": "^4.5.4"
},
"resolutions": {
"ipfs-unixfs": "6.0.6"
},
"exports": {
"chaintypes": "src/chaintypes.ts"
}
}