forked from bgodlin/sora-subquery-dictionary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 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
{
"name": "sora-subquery-dictionary",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc -b",
"prepack": "rm -rf dist && npm build",
"test": "jest",
"codegen": "./node_modules/.bin/subql codegen",
"generate:defs": "ts-node --skip-project node_modules/.bin/polkadot-types-from-defs --package sora/api-interfaces --input ./src/api-interfaces/",
"generate:meta": "ts-node --skip-project node_modules/.bin/polkadot-types-from-chain --package sora/api-interfaces --endpoint ./src/api-interfaces/sora.json --output ./src/api-interfaces"
},
"homepage": "https://github.com/subquery/subql-starter",
"repository": "github:subquery/subql-starter",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "Soramitsu",
"license": "Apache-2.0",
"devDependencies": {
"@polkadot/typegen": "^4.9.2",
"@subql/cli": "0.23.0",
"@subql/node": "0.23.1",
"@subql/types": "^0.14.0",
"ts-node": "^8.6.2",
"typescript": "^4.1.3"
},
"dependencies": {
"@polkadot/api": "^4.9.2",
"@sora-substrate/type-definitions": "^1.6.9",
"bignumber.js": "^9.0.1"
}
}