-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
23 lines (23 loc) · 871 Bytes
/
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
{
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.8",
"hardhat": "^2.9.7"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^3.0.4",
"@openzeppelin/contracts": "^4.6.0",
"dotenv": "^16.0.1",
"hardhat-gas-reporter": "^1.0.8",
"nodemon": "^2.0.16",
"solidity-coverage": "^0.7.21"
},
"scripts": {
"setup": "concurrently \"npm i --save-dev hardhat\" \"npm i @openzeppelin/contracts\" \"npm i --save-dev @nomiclabs/hardhat-ethers\" \"npm i --save-dev ethers\" \"npm i --save-dev @nomiclabs/hardhat-waffle\" \"npm i --save-dev ethereum-waffle\" \"npm i --save-dev \" ",
"compile": "npx hardhat compile",
"test": "nodemon --watch test/sample-test.js --exec npx hardhat test "
}
}