-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
49 lines (49 loc) · 1.88 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
{
"name": "cellar-contracts",
"license": "Apache-2.0",
"version": "1.0.0",
"author": {
"name": "Sommelier Finance",
"url": "https://www.sommelier.finance/"
},
"scripts": {
"setup": "forge install && npm install && npm run build",
"build": "forge build && npx hardhat compile",
"test": "forge test -vv && npx hardhat compile && npx hardhat test",
"coverage": "npx hardhat compile && npx hardhat coverage",
"lint": "npx prettier --write src/ test/ tasks/",
"update": "forge update && npm upgrade",
"clean": "forge clean && npx hardhat clean",
"clear": "npm run clean && rm -rf node_modules cache_hardhat",
"reinstall": "npm run clear && npm run setup",
"forkTest": "source .env && forge test -vv --fork-url $MAINNET_RPC_URL --fork-block-number $BLOCK_NUMBER",
"forkCoverage": "source .env && forge coverage --fork-url $MAINNET_RPC_URL --fork-block-number $BLOCK_NUMBER",
"forkCoverageLCOV": "source .env && forge coverage --fork-url $MAINNET_RPC_URL --fork-block-number $BLOCK_NUMBER --report lcov",
"forkAnvil": "source .env && anvil --fork-url $MAINNET_RPC_URL"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.35",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"ethereum-waffle": "^3.2.0",
"ethers": "^5.6.6",
"hardhat": "^2.9.5",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-preprocessor": "^0.1.4",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solidity-coverage": "^0.7.21",
"ts-node": "^10.7.0",
"typechain": "^8.0.0",
"typescript": "^4.6.4"
}
}