-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.61 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
{
"name": "zenlink-exchange-subquery",
"version": "1.0.0",
"main": "dist/index.js",
"private": true,
"scripts": {
"build": "subql build",
"prepack": "rm -rf dist && yarn build",
"test": "jest",
"codegen": "./node_modules/.bin/subql codegen",
"docker": "rm -rf .data && docker-compose pull && docker-compose up",
"prepare:moonriver": "yarn workspaces run prepare:moonriver",
"prepare:moonbeam": "yarn workspaces run prepare:moonbeam",
"deploy:moonriver": "subql publish -f moonriver.yaml",
"deploy:moonbeam": "subql publish -f moonbeam.yaml"
},
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"workspaces": [
"src/constants/**"
],
"author": "Hayden0323",
"license": "MIT",
"resolutions": {
"@polkadot/api": "^7.12.1",
"@polkadot/types": "^7.12.1",
"@polkadot/util": "^8.5.1",
"ipfs-unixfs": "6.0.6"
},
"devDependencies": {
"@polkadot/api": "^7.12.1",
"@subql/cli": "latest",
"@subql/contract-processors": "^0.6.0",
"@subql/frontier-evm-processor": "^0.0.3-0",
"@subql/moonbeam-evm-processor": "latest",
"@subql/node": "latest",
"@subql/types": "latest",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"bignumber.js": "^9.0.2",
"ejs": "^3.1.6",
"ethers": "^5.6.8",
"handlebars": "^4.7.7",
"moonbeam-types-bundle": "latest",
"mustache": "^4.2.0",
"typescript": "^4.0.0",
"web3-utils": "^1.7.4"
},
"exports": {
"chaintypes": "./src/chaintypes.ts",
"moonbeamEvm": "./node_modules/@subql/moonbeam-evm-processor/dist/index.js"
}
}