-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1021 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
32
33
34
35
36
37
38
39
40
41
{
"name": "zenlink-blocks-subquery",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"build": "tsc -b",
"prepack": "rm -rf dist && yarn build",
"test": "jest",
"codegen": "./node_modules/.bin/subql codegen",
"deploy:moonriver": "subql publish -f moonriver.yaml",
"deploy:moonbeam": "subql publish -f moonbeam.yaml"
},
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "Hayden0323",
"license": "MIT",
"resolutions": {
"@polkadot/api": "^7.12.1",
"@polkadot/types": "^7.12.1",
"@polkadot/util": "^8.5.1",
"ipfs-unixfs": "6.0.6"
},
"devDependencies": {
"@polkadot/api": "^7.12.1",
"@subql/cli": "latest",
"@subql/types": "latest",
"@subql/node": "^1.1.2",
"@subql/contract-processors": "^0.5.4",
"ejs": "^3.1.6",
"handlebars": "^4.7.7",
"mustache": "^4.2.0",
"typescript": "^4.6.2",
"moonbeam-types-bundle": "^2.0.3"
},
"exports": {
"chaintypes": "./src/chaintypes.ts"
}
}