-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.8 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.8 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
{
"version": "1.0.0",
"main": "hardhat.config.js",
"scripts": {
"test": "npx hardhat test",
"test-coverage": "npx hardhat coverage --testfiles 'test/**/*.test.js'",
"test-integration": "npx hardhat test test/integration/*.test.js",
"lint": "solhint 'contracts/*.sol'",
"lint:fix": "solhint 'contracts/**/*.sol' --fix",
"format": "prettier --write .",
"clean": "npx hardhat clean && rm -rf contracts-exposed",
"compile": "npx hardhat compile",
"contract-size": "yarn run hardhat size-contracts",
"slither": "slither . --solc-remaps '@openzeppelin=node_modules/@openzeppelin @chainlink=node_modules/@chainlink' --exclude naming-convention,external-function,low-level-calls"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "2.2.2",
"@nomiclabs/hardhat-etherscan": "3.1.7",
"@nomiclabs/hardhat-solhint": "3.0.0",
"@nomiclabs/hardhat-waffle": "2.0.5",
"@openzeppelin/contracts": "4.8.2",
"@openzeppelin/contracts-upgradeable": "4.8.2",
"@openzeppelin/hardhat-upgrades": "1.22.1",
"@openzeppelin/test-helpers": "0.5.16",
"@thirdweb-dev/contracts": "3.4.5",
"cli-color": "2.0.3",
"dotenv": "10.0.0",
"ethereum-waffle": "4.0.10",
"ethers": "5.7.2",
"evm-bn": "1.1.2",
"hardhat": "2.13.0",
"hardhat-contract-sizer": "2.8.0",
"js-big-decimal": "1.4.1",
"keccak256": "1.0.6",
"merkletreejs": "0.3.9",
"mocha-junit-reporter": "2.2.0",
"mocha-multi-reporters": "1.5.1"
},
"devDependencies": {
"csv-writer": "1.6.0",
"hardhat-gas-reporter": "1.0.9",
"hardhat-ignore-warnings": "0.2.8",
"prettier": "2.7.1",
"solidity-coverage": "0.8.2"
}
}