-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
96 lines (96 loc) · 3.4 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
{
"name": "subgraphs",
"private": true,
"version": "0.0.0",
"repository": "https://github.com/VenusProtocol/subgraphs",
"license": "MIT",
"engines": {
"node": ">=18.x.x"
},
"workspaces": [
"packages/*",
"subgraphs/*"
],
"scripts": {
"codegen": "yarn workspaces foreach run codegen",
"build:docker": "yarn workspaces foreach run build:docker",
"build:chapel": "yarn workspaces foreach run build:chapel",
"build:bsc": "yarn workspaces foreach run build:bsc",
"deploy:docker": "yarn workspaces foreach run deploy:docker",
"deploy:chapel": "yarn workspaces foreach run deploy:chapel",
"deploy:bsc": "yarn workspaces foreach run deploy:bsc",
"prepare:docker": "yarn workspaces foreach run prepare:docker",
"prepare:chapel": "yarn workspaces foreach run prepare:chapel",
"prepare:bsc": "yarn workspaces foreach run prepare:bsc",
"generate-subgraph-types": "yarn workspaces foreach run generate-subgraph-types",
"lint": "eslint '**/*.{ts,tsx}'",
"lint:fix": "yarn lint --fix",
"pretty": "prettier '**/*.ts' --write",
"test": "yarn workspaces foreach run test",
"node:integration": "yarn hardhat --max-memory 16384 node --hostname 0.0.0.0",
"test:integration": "yarn workspaces foreach run test:integration",
"postinstall": "yarn patch-package && ./copy_contracts.sh"
},
"devDependencies": {
"@chainlink/contracts": "^0.5.1",
"@graphprotocol/client-cli": "3.0.0",
"@graphprotocol/graph-cli": "^0.80.0",
"@graphprotocol/graph-ts": "^0.35.1",
"@layerzerolabs/solidity-examples": "^1.1.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.4",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/mocha": "^9.1.1",
"@types/mustache": "^4.2.1",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"@venusprotocol/governance-contracts": "2.4.0",
"@venusprotocol/isolated-pools": "3.6.0",
"@venusprotocol/oracle": "2.6.0",
"@venusprotocol/protocol-reserve": "2.3.0",
"@venusprotocol/solidity-utilities": "^2.0.3",
"@venusprotocol/venus-protocol": "9.3.0",
"assemblyscript": "0.19.23",
"chai": "^4.3.6",
"eslint": "^8.25.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.26.0",
"ethers": "^5.7.0",
"graphql": "16.6.0",
"graphql-tag": "2.12.6",
"hardhat": "^2.16.1",
"hardhat-dependency-compiler": "^1.2.1",
"hardhat-deploy": "^0.11.15",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^3.0.5",
"lint-staged": "^12.3.3",
"matchstick-as": "^0.6.0",
"module-alias": "^2.2.2",
"mustache": "^4.2.0",
"patch-package": "6.5.1",
"prettier": "^2.5.1",
"prettier-airbnb-config": "^1.0.0",
"ts-node": "^10.9.2",
"typechain": "^8.1.0",
"typescript": "^4.8.4"
},
"resolutions": {
"@venusprotocol/governance-contracts": "2.4.0",
"@venusprotocol/venus-protocol": "9.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"packageManager": "[email protected]",
"_moduleAliases": {
"@nomiclabs/hardhat-ethers": "node_modules/hardhat-deploy-ethers"
}
}