-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.86 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.86 KB
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
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@mahaxyz/contracts",
"version": "1.18.0",
"license": "GPL-3.0",
"scripts": {
"build:blue": "cd lib/morpho-blue/ && yarn build:forge && cd ../..",
"test:forge": "yarn build:blue && FOUNDRY_PROFILE=test forge test",
"clean": "rimraf abi types docs artifacts cache coverage forge-build",
"docs": "hardhat docgen",
"format": "forge fmt",
"format:check": "forge fmt --check",
"coverage": "yarn build:blue && forge coverage --report lcov",
"coverage:lcov": "yarn coverage && lcov --remove lcov.info test contracts/periphery --ignore-errors inconsistent -o lcov.info",
"coverage:html": "yarn coverage:lcov && genhtml lcov.info --output-dir coverage --rc lcov_branch_coverage=1",
"coverage:html:mac": "yarn coverage:lcov && genhtml lcov.info --output-dir coverage --rc branch_coverage=1 --ignore-errors inconsistent --ignore-errors corrupt",
"test": "yarn test:forge",
"compile": "SKIP_LOAD=true hardhat compile && forge build",
"prepublishOnly": "npm run compile && npm run docs",
"deploy-w3f-fees-distribute-mainnet": "w3f deploy web3-functions/fees-distribute-mainnet/index.ts",
"test-w3f-fees-distribute-mainnet": "hardhat w3f-run fees-distribute-mainnet --network mainnet --logs"
},
"files": [
"abi",
"contracts",
"deployments",
"LICENSE",
"README.md",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mahaxyz/contracts.git"
},
"author": {
"name": "maha.xyz",
"email": "security@maha.xyz",
"url": "https://github.com/mahaxyz"
},
"bugs": {
"url": "https://github.com/mahaxyz/contracts/issues"
},
"homepage": "https://github.com/mahaxyz/contracts#readme",
"devDependencies": {
"@ethersproject/bignumber": "^5.6.2",
"@gelatonetwork/automate-sdk": "^3.0.28",
"@gelatonetwork/web3-functions-sdk": "^2.4.4",
"@layerzerolabs/lz-evm-oapp-v2": "^2.3.36",
"@layerzerolabs/lz-evm-protocol-v2": "^2.3.36",
"@layerzerolabs/lz-v2-utilities": "^2.3.36",
"@layerzerolabs/solidity-examples": "^1.1.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.4",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.4",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"@openzeppelin/hardhat-upgrades": "^3.2.0",
"@pythnetwork/pyth-sdk-solidity": "^2.4.1",
"@stargatefinance/stg-evm-v2": "^1.1.3",
"@tenderly/hardhat-tenderly": "1.1.0-beta.5",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "4.2.11",
"@types/lowdb": "1.0.9",
"@types/mocha": "^9.1.1",
"@types/node": "14.0.5",
"@types/underscore": "^1.11.15",
"bluebird": "^3.7.2",
"chai": "^4.2.0",
"dotenv": "^16.4.5",
"eth-sig-util": "2.5.3",
"ethereumjs-util": "7.0.2",
"ethers": "^6.13.1",
"hardhat": "^2.22.6",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "2.0.3",
"hardhat-dependency-compiler": "^1.2.1",
"hardhat-deploy": "^0.12.4",
"hardhat-gas-reporter": "1.0.8",
"hardhat-tracer": "^3.0.3",
"hardhat-typechain": "^0.3.5",
"husky": "8.0.3",
"lint-staged": "13.1.0",
"prettier": "2.8.4",
"prettier-plugin-solidity": "1.1.3",
"rimraf": "^6.0.1",
"solidity-coverage": "^0.8.12",
"solidity-docgen": "^0.6.0-beta.36",
"ts-node": "8.10.2",
"tslint": "6.1.2",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.3.0",
"typechain": "^8.3.2",
"typescript": "^5.5.3",
"underscore": "^1.13.7"
},
"resolutions": {
"ethers": "^5.7.2",
"hardhat-deploy": "^0.12.1",
"@openzeppelin/contracts": "^5.0.0"
},
"dependencies": {
"csv-parser": "^3.1.0"
}
}