-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.31 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
{
"name": "lucky-subql",
"version": "1.0.0",
"description": "This SubQuery project indexes data used by the dApp Lucky",
"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",
"test": "subql build && subql-node test"
},
"homepage": "https://github.com/LuckyDapp/subquery-lucky",
"repository": "https://github.com/LuckyDapp/subquery-lucky",
"files": [
"dist",
"schema.graphql",
"project-shibuya.yaml",
"project-shiden.yaml",
"project-astar.yaml"
],
"author": "GuiGou",
"license": "MIT",
"devDependencies": {
"@polkadot/api": "^10",
"@subql/types": "latest",
"typescript": "^4.1.3",
"@subql/cli": "latest",
"node-fetch": "2.6.7",
"@subql/testing": "latest",
"@subql/node": "latest"
},
"resolutions": {
"ipfs-unixfs": "6.0.6"
},
"dependencies": {
"@subql/substrate-wasm-processor": "latest"
},
"exports": {
"chaintypes": "src/chaintypes.ts",
"indexShibuya": "src/indexShibuya.ts",
"indexShiden": "src/indexShiden.ts",
"indexAstar": "src/indexAstar.ts"
}
}