-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.96 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": "subquery-proxy",
"version": "1.0.0",
"description": "This project can be used as a starting point for developing your SubQuery project",
"main": "dist/index.js",
"scripts": {
"build": "subql build",
"codegen": "subql codegen",
"start:docker": "cross-env PROJECT_PATH=$PROJECT_PATH 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",
"deploy:polkadot": "subql publish -f polkadot.yaml",
"deploy:kusama": "subql publish -f kusama.yaml",
"deploy:moonbeam": "subql publish -f moonbeam.yaml",
"deploy:moonriver": "subql publish -f moonriver.yaml",
"deploy:rococo": "subql publish -f rococo.yaml",
"deploy:westend": "subql publish -f westend.yaml",
"deploy:hydradx": "subql publish -f hydradx.yaml"
},
"homepage": "https://github.com/subquery/subql-starter",
"repository": "github:subquery/subql-starter",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "Novasama Technlogies",
"license": "MIT",
"devDependencies": {
"@polkadot/api": "^11",
"@subql/cli": "latest",
"@subql/testing": "latest",
"@subql/types": "latest",
"moonbeam-types-bundle": "^2.0.8",
"typescript": "^5.2.2"
},
"resolutions": {
"ipfs-unixfs": "6.0.6"
},
"dependencies": {
"@polkadot/api-augment": "^10.12.1",
"@polkadot/util": "^12.6.2",
"@polkadot/util-crypto": "^12.6.2",
"@subql/types-core": "^0.7.0",
"tslib": "^2.6.2"
},
"exports": {
"moonbeamChaintypes": "./chainTypes/moonbeamChaintypes.ts",
"bittensorChaintypes": "./chainTypes/bittensorChainTypes.ts",
"alephZeroChaintypes": "./chainTypes/alephZeroChaintypes.ts",
"kusamaAssetHubChaintypes": "./chainTypes/kusamaAssetHubChaintypes.ts",
"availChainTypes": "./chainTypes/availChainTypes.ts"
}
}