wave-portal/package.json
dependabot[bot] b38b919553
Bump cacheable-request, @nomiclabs/hardhat-waffle and ethereum-waffle
Removes [cacheable-request](https://github.com/jaredwray/cacheable-request). It's no longer used after updating ancestor dependencies [cacheable-request](https://github.com/jaredwray/cacheable-request), [@nomiclabs/hardhat-waffle](https://github.com/NomicFoundation/hardhat-waffle) and [ethereum-waffle](https://github.com/EthWorks/Waffle). These dependencies need to be updated together.


Removes `cacheable-request`

Updates `@nomiclabs/hardhat-waffle` from 2.0.3 to 2.0.5
- [Release notes](https://github.com/NomicFoundation/hardhat-waffle/releases)
- [Changelog](https://github.com/NomicFoundation/hardhat-waffle/blob/main/CHANGELOG.md)
- [Commits](https://github.com/NomicFoundation/hardhat-waffle/commits/v2.0.5)

Updates `ethereum-waffle` from 3.4.4 to 4.0.9
- [Release notes](https://github.com/EthWorks/Waffle/releases)
- [Commits](https://github.com/EthWorks/Waffle/compare/ethereum-waffle@3.4.4...ethereum-waffle@4.0.9)

---
updated-dependencies:
- dependency-name: cacheable-request
  dependency-type: indirect
- dependency-name: "@nomiclabs/hardhat-waffle"
  dependency-type: direct:development
- dependency-name: ethereum-waffle
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-02-12 03:00:36 +00:00

30 lines
852 B
JSON

{
"name": "wave-portal",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"accounts": "npx hardhat accounts",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"run": "npx hardhat run scripts/run.js",
"server": "npx hardhat node",
"deploy-local": "npx hardhat run scripts/deploy.js --network localhost",
"deploy-testnet": "npx hardhat run scripts/deploy.js --network rinkeby",
"deploy-mainnet": "npx hardhat run scripts/deploy.js --network mainnet"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.5",
"chai": "^4.3.6",
"ethereum-waffle": "^4.0.9",
"ethers": "^5.6.2",
"hardhat": "^2.9.2"
},
"dependencies": {
"dotenv": "^16.0.0"
}
}