-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.47 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
{
"name": "flashliquidity-portals",
"version": "0.0.7",
"license": "MIT",
"repository": "https://github.com/flashliquidity/flashliquidity-portals.git",
"scripts": {
"setup": "yarn && forge install",
"compile": "forge build",
"test": "forge test",
"unit-test": "forge test --nmt 'Fuzz|invariant'",
"fuzz-test": "forge test --mt Fuzz",
"invariant-test": "forge test --mt invariant",
"coverage": "forge coverage --report summary --report lcov",
"gas-report": "forge snapshot --gas-report",
"slither": "slither .",
"lint": "solhint 'contracts/*.sol'",
"lint-fix": "solhint 'contracts/**/*.sol' --fix",
"format": "forge fmt contracts/*.sol && forge fmt contracts/**/*.sol && forge fmt test/foundry-test/**/*.sol test/helpers/*.sol",
"format-check": "forge fmt --check"
},
"dependencies": {
"@chainlink/contracts": "^0.8.0",
"@chainlink/contracts-ccip": "^1.4.0",
"@openzeppelin/contracts": "4.9.3",
"flashliquidity-acs": "0.0.7"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@types/node": "^18.7.18",
"dotenv": "^16.0.0",
"ethers": "^5.7.2",
"hardhat": "^2.19.1",
"hardhat-deploy": "^0.11.15",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"import-toml": "^1.0.0",
"solhint": "^4.0.0",
"solhint-plugin-prettier": "^0.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}