-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.62 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.62 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
{
"dependencies": {
"@chainlink/contracts": "^0.4.1",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contract-loader": "^0.6.3",
"@openzeppelin/contracts": "^4.7.0",
"@openzeppelin/contracts-ethereum-package": "^3.0.0",
"@openzeppelin/hardhat-upgrades": "^1.19.0",
"@openzeppelin/test-environment": "^0.1.9",
"@openzeppelin/test-helpers": "^0.5.15",
"@smartdec/smartcheck": "^2.0.1",
"@uniswap/v3-periphery": "^1.4.1",
"chai": "^4.3.6",
"deploy": "^1.0.3",
"dotenv": "^16.0.1",
"hardhat-deploy": "^0.11.10",
"hardhat-gas-reporter": "^1.0.8",
"openzeppelin-solidity": "^4.6.0",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solidity-coverage": "^0.7.21"
},
"scripts": {
"test": "npx hardhat test",
"test:staging": "npx hardhat test --network rinkeby",
"lint:fix": "npx solhint 'contracts/*.sol --fix",
"lint": "npx solhint 'contracts/*.sol",
"format": "npx prettier --write .",
"coverage": "npx hardhat coverage",
"slither": "slither . --solc-remaps '@openzeppelin=node_modules/@openzeppelin @chainlink=node_modules/@chainlink' --exclude naming-convention,external-function,low-level-calls"
},
"devDependencies": {
"ethers": "^5.5.4",
"hardhat": "^2.10.2",
"hardhat-deploy-ethers": "^0.3.0-beta.13"
}
}