forked from parascan-xyz/moonbeam-subql
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 797 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": "moonbeam-subquery",
"version": "1.0.0",
"description": "Subquery for moonbeam blockchain explorer",
"main": "dist/index.js",
"scripts": {
"build": "tsc -b",
"prepack": "rm -rf dist && npm build",
"test": "jest",
"codegen": "./node_modules/.bin/subql codegen"
},
"homepage": "https://github.com/parascan-xyz/moonbeam-subquery",
"repository": "github:parascan-xyz/moonbeam-subquery",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "Bisola Olasehinde",
"license": "MIT",
"devDependencies": {
"@polkadot/api": "^7",
"@subql/cli": "latest",
"@subql/types": "latest",
"moonbeam-types-bundle": "^2.0.4",
"typescript": "^4.1.3"
},
"dependencies": {
"@subql/contract-processors": "^0.6.0"
}
}