-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.04 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
36
37
{
"name": "truffle-hardhat",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "hardhat test",
"compile": "hardhat compile",
"deploy": "hardhat deploy --tags Greeter",
"prettier": "prettier --write 'contracts/**/*.sol'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.10",
"hardhat": "^2.2.1",
"hardhat-deploy": "^0.8.6",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.8",
"web3": "^1.3.1"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.1.0",
"@openzeppelin/contracts-upgradeable": "^4.1.0",
"@openzeppelin/hardhat-upgrades": "^1.9.0",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.2.0",
"ethers": "^5.4.4",
"hardhat-gas-reporter": "^1.0.4"
}
}