-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
97 lines (97 loc) · 3.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "subquery-nova",
"version": "1.0.0",
"description": "Nova SubQuery projects",
"main": "dist/index.js",
"scripts": {
"build": "./node_modules/.bin/subql build",
"start:docker": "docker-compose pull && docker-compose up --remove-orphans",
"codegen": "./node_modules/.bin/subql codegen",
"validate": "./node_modules/.bin/subql validate",
"prepare": "husky install",
"local-publish": "cd ./scripts && ./local-publish.sh"
},
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "SubQuery Team and Novasama",
"license": "Apache-2.0",
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@acala-network/type-definitions": "^4.1.5",
"@crustio/type-definitions": "^1.3.0",
"@docknetwork/node-types": "0.17.0",
"@equilab/definitions": "^1.4.18",
"@frequency-chain/api-augment": "1.7.4",
"@interlay/interbtc-types": "^1.5.10",
"@kiltprotocol/type-definitions": "^0.1.23",
"@parallel-finance/type-definitions": "^1.7.14",
"@peaqnetwork/type-definitions": "0.0.4",
"@phala/typedefs": "^0.2.31",
"@polkadot/api": "^11",
"@polkadot/api-derive": "^11",
"@polkadot/types": "^11",
"@polkadot/types-augment": "^11",
"@polkadot/types-codec": "^11",
"@polymeshassociation/polymesh-types": "^5.4.1",
"@subql/cli": "latest",
"@subql/types": "latest",
"@subsocial/types": "^0.6.8",
"@types/jest": "^29.5.1",
"@zeitgeistpm/type-defs": "^0.8.0",
"@zeroio/type-definitions": "^0.0.14",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^15.1.0",
"moonbeam-types-bundle": "^2.0.8",
"prettier": "3.1.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"exports": {
"acalaChaintypes": "./chainTypes/acalaChaintypes.ts",
"ajunaChaintypes": "./chainTypes/ajunaChaintypes.ts",
"alephZeroChaintypes": "./chainTypes/alephZeroChaintypes.ts",
"astarChaintypes": "./chainTypes/astarChaintypes.ts",
"basiliskChaintypes": "./chainTypes/basiliskChaintypes.ts",
"centrifugeChaintypes": "./chainTypes/centrifugeChaintypes.ts",
"dockChaintypes": "./chainTypes/dockChaintypes.ts",
"encointerChaintypes": "./chainTypes/encointerChaintypes.ts",
"frequencyChaintypes": "./chainTypes/frequencyChaintypes.ts",
"krestChaintypes": "./chainTypes/krestChaintypes.ts",
"integriteeChaintypes": "./chainTypes/integriteeChaintypes.ts",
"interlayChaintypes": "./chainTypes/interlayChaintypes.ts",
"jurChaintypes": "./chainTypes/jurChaintypes.ts",
"karuraChaintypes": "./chainTypes/karuraChaintypes.ts",
"khalaChaintypes": "./chainTypes/khalaChaintypes.ts",
"kiltChaintypes": "./chainTypes/kiltChaintypes.ts",
"kintsugiChaintypes": "./chainTypes/kintsugiChaintypes.ts",
"moonbeamChaintypes": "./chainTypes/moonbeamChaintypes.ts",
"parallelHeikoChaintypes": "./chainTypes/parallelHeikoChaintypes.ts",
"rococoAssethubChaintypes": "./chainTypes/rococoAssethubChaintypes.ts",
"shidenChaintypes": "./chainTypes/shidenChaintypes.ts",
"statemineChaintypes": "./chainTypes/statemineChaintypes.ts",
"subsocialChaintypes": "./chainTypes/subsocialChaintypes.ts",
"zeitgeistChaintypes": "./chainTypes/zeitgeistChaintypes.ts",
"ternoaChaintypes": "./chainTypes/ternoaChaintypes.ts",
"polkadexChaintypes": "./chainTypes/polkadexChaintypes.ts",
"kylinChaintypes": "./chainTypes/kylinChainTypes.ts",
"polymeshChaintypes": "./chainTypes/polymeshTypes.ts",
"crustChaintypes": "./chainTypes/crustChaintypes.ts",
"bittensorChaintypes": "./chainTypes/bittensorChainTypes.ts",
"calamariChainTypes": "./chainTypes/calamariChainTypes.ts",
"westmintChaintypes": "./chainTypes/westmintChaintypes.ts",
"availChainTypes": "./chainTypes/availChainTypes.ts"
},
"resolutions": {
"ipfs-unixfs": "6.0.6"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}