forked from smartcontractkit/defi-minimal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.28 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
{
"name": "defi-minimal",
"version": "1.0.0",
"description": "A minimal repo for building and learning from defi primatives. ",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"lint": "solhint 'contracts/*.sol'",
"lint:fix": "solhint 'contracts/**/*.sol' --fix",
"format": "prettier --write .",
"coverage": "hardhat coverage --solcoverjs ./.solcover.js",
"fuzzing": "docker run -it --rm -v $PWD:/src trailofbits/eth-security-toolbox",
"slither":"slither ./contracts/ --solc-remaps '@openzeppelin/contracts=./node_modules/@openzeppelin/contracts @chainlink/contracts=./node_modules/@chainlink/contracts' --exclude naming-convention"
},
"devDependencies": {
"@chainlink/contracts": "^0.4.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^4.5.0",
"chai": "^4.2.0",
"dotenv": "^16.0.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.6.1",
"hardhat": "^2.9.1",
"hardhat-deploy": "^0.11.0",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^2.6.0",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solidity-coverage": "^0.7.20"
},
"dependencies": {
"solhint": "^3.3.7"
}
}