-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "dapps-staking-indexer",
"version": "0.0.1",
"description": "Astar Network dapps staking indexing service.",
"main": "dist/index.js",
"scripts": {
"build": "subql build",
"prepack": "rm -rf dist && npm build",
"test": "jest",
"codegen": "subql codegen",
"start:docker": "docker-compose pull && docker-compose up --remove-orphans"
},
"homepage": "https://github.com/subquery/astar-subql-starter",
"repository": "github:subquery/astar-subql-starter",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "Bobo K.",
"license": "MIT",
"devDependencies": {
"@polkadot/api": "^9",
"@subql/cli": "latest",
"@subql/frontier-evm-processor": "latest",
"@subql/substrate-wasm-processor": "latest",
"@subql/types": "latest",
"typescript": "^4.1.3"
},
"exports": {
"frontierEvm": "./node_modules/@subql/frontier-evm-processor/dist/index.js",
"chaintypes": "src/chaintypes.ts"
},
"dependencies": {
"crypto": "^1.0.1"
}
}