-
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.23 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.23 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
{
"name": "hardhat-project",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.11.0",
"chai": "^4.3.4",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.3.0",
"hardhat": "^2.4.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"solidity-coverage": "^0.7.14",
"rimraf": "^3.0.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.19",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"hardhat-contract-sizer": "2.5.1"
},
"scripts": {
"test": "npx hardhat test --network hardhat",
"build": "npx hardhat compile",
"clean": "hardhat clean && rimraf ./artifacts ./cache",
"coverage": "npx hardhat coverage",
"hardhat": "hardhat",
"prettier": "prettier --write contracts/**/*.sol"
},
"dependencies": {
"@openzeppelin/contracts": "^4.1.0",
"@openzeppelin/contracts-upgradeable": "^4.1.0",
"dotenv": "^10.0.0",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-gas-reporter": "1.0.8",
"web3": "^1.5.0",
"hardhat-deploy": "^0.9.24"
}
}