-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "subql-spectator",
"version": "0.3.3",
"description": "Substrate slots auction data collector",
"main": "dist/index.js",
"scripts": {
"prebuild": "npm run codegen",
"build": "tsc -b",
"prepack": "rm -rf dist && npm build",
"test": "jest",
"prestart": "npm run build",
"predebug": "npm run build",
"start": "subql-node -f ./ --batch-size 1 -- --unhandled-rejections=strict --trace-warnings",
"debug": "node --inspect --unhandled-rejections=strict subql-node -f ./ --debug --batch-size 1",
"query": "subql-query -n subql-spectator --playground",
"codegen": "./node_modules/.bin/subql codegen"
},
"homepage": "https://github.com/subquery/subql-starter",
"repository": "github:subquery/subql-starter",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "Kerwin Weng",
"license": "Apache-2.0",
"devDependencies": {
"@polkadot/api": "^4.15.1",
"@subql/cli": "^0.10.0",
"@subql/types": "^0.8.0",
"typescript": "^4.1.3"
},
"resolutions": {
"@polkadot/api": "6.3.1",
"@subql/node": "^0.22.0"
},
"dependencies": {
"@subql/node": "^0.22.0"
}
}