-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "blockchain",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npx hardhat node --tags GAAVE",
"test": "npx hardhat test",
"deploy:mumbai": "npx hardhat deploy --network rinkeby --tags GAAVE",
"verify:mumbai": "npx hardhat --network mainnet etherscan-verify",
"new:wallet": "npx hardhat new:wallet"
},
"author": "",
"license": "ISC",
"dependencies": {
"@chainlink/contracts": "^0.4.2",
"@ethersproject/hardware-wallets": "^5.6.1",
"@openzeppelin/contracts": "^4.7.1",
"@openzeppelin/contracts-upgradeable": "^4.7.1",
"@openzeppelin/test-helpers": "^0.5.15",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.6.1",
"axios": "^0.27.2",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"fs-extra": "^10.1.0",
"hardhat": "^2.10.1",
"hardhat-deploy": "^0.11.12",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.7.4"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"ethers": "^5.6.9",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-dev.23",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5"
},
"overrides": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13"
}
}