-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 2.27 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
{
"name": "subquery-network-subql-project",
"version": "1.0.0",
"description": "Subql project for indexing the Subquery Network",
"main": "dist/index.js",
"scripts": {
"build:mainnet": "yarn check-filters mainnet && ./node_modules/.bin/subql build",
"build:testnet": "yarn check-filters testnet && ./node_modules/.bin/subql build",
"codegen:mainnet": "./node_modules/.bin/subql codegen -f ./project-mainnet.yaml",
"codegen:testnet": "./node_modules/.bin/subql codegen -f ./project-testnet.yaml",
"deploy:mainnet": "subql publish -f ./project-mainnet.yaml",
"deploy:testnet": "subql publish -f ./project-testnet.yaml",
"validate": "subql validate",
"prepare": "husky install",
"postinstall": "sh ./scripts/postinstall.sh",
"prepack": "rm -rf dist && yarn build",
"check-filters": "node -r ts-node/register/transpile-only ./scripts/checkFilters.ts",
"prettier:fix": "prettier --write ."
},
"homepage": "https://github.com/subquery/network-app-backend",
"repository": "https://github.com/subquery/network-app-backend",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "SubQuery Pty. Limited",
"license": "Apache-2.0",
"devDependencies": {
"@subql/cli": "4.15.0",
"@typechain/ethers-v5": "^10.2.0",
"@types/bs58": "^4.0.1",
"@types/js-yaml": "^4.0.5",
"@typescript-eslint/eslint-plugin": "4",
"@typescript-eslint/parser": "4",
"eslint": "7",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.25.4",
"husky": ">=6",
"js-yaml": "^4.1.0",
"lint-staged": ">=10",
"prettier": "2.5.1",
"ts-node": "^10.7.0",
"typechain": "^8.1.1",
"typescript": "4.5.5"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@subql/contract-sdk": "^1.4.0",
"@subql/types-ethereum": "^3.5.0",
"@types/pino": "^7.0.5",
"@types/validator": "latest",
"bignumber.js": "^9.1.2",
"bs58": "^4.0.1",
"ethers": "^5.7.2",
"pino": "^7.8.0"
},
"resolutions": {
"class-transformer": "0.4.0",
"ipfs-unixfs": "6.0.6",
"@ethersproject/base64": "5.7.0",
"@polkadot/util": "12.3.2",
"@polkadot/util-crypto": "12.3.2"
},
"lint-staged": {
"*.{ts,css,md}": "prettier --write"
}
}