-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.88 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "nova-wallet-staking",
"version": "0.0.1",
"description": "Project that provides up-to-date information about on-chain staking APY",
"main": "dist/index.js",
"scripts": {
"build": "subql build",
"codegen": "subql codegen",
"start:docker": "docker-compose pull && docker-compose up --remove-orphans",
"dev": "subql codegen && subql build && docker-compose pull && docker-compose up --remove-orphans",
"prepack": "rm -rf dist && npm run build",
"clear": "rm -r .data/postgres && mkdir .data/postgres",
"test": "jest"
},
"homepage": "https://github.com/subquery/subql-starter",
"repository": "github:subquery/subql-starter",
"files": [
"dist",
"schema.graphql",
"config"
],
"author": "Nova Wallet Team",
"license": "MIT",
"devDependencies": {
"@docknetwork/node-types": "0.17.0",
"@jest/globals": "^29.3.1",
"@polkadot/api": "^9",
"@subql/cli": "3.6.1",
"@subql/types": "1.7.3-2",
"@zeitgeistpm/type-defs": "^1.0.0",
"@zeroio/type-definitions": "^0.0.14",
"jest": "^29.5.0",
"moonbeam-types-bundle": "^2.0.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"@types/jest": "^29.5.1",
"typescript": "^4.1.3"
},
"exports": {
"dockChaintypes": "./chainTypes/dockChaintypes.ts",
"alephZeroChaintypes": "./chainTypes/alephZeroChaintypes.ts",
"moonbeamChaintypes": "./chainTypes/moonbeamChaintypes.ts",
"polkadexChaintypes": "./chainTypes/polkadexChaintypes.ts",
"ternoaChaintypes": "./chainTypes/ternoaChaintypes.ts",
"zeitgeistChaintypes": "./chainTypes/zeitgeistChaintypes.ts",
"calamariChainTypes": "./chainTypes/calamariChainTypes.ts",
"availChainTypes": "./chainTypes/availChainTypes.ts"
},
"dependencies": {
"@moonbeam-network/api-augment": "^0.2301.0",
"@oak-network/api-augment": "1.8.1",
"@types/big.js": "^6.1.6",
"big.js": "^6.2.1"
}
}