mirror of
https://github.com/rjNemo/wave-portal
synced 2026-06-06 00:56:39 +00:00
Bumps [undici](https://github.com/nodejs/undici) to 5.18.0 and updates ancestor dependency [hardhat](https://github.com/nomiclabs/hardhat). These dependencies need to be updated together. Updates `undici` from 4.16.0 to 5.18.0 - [Release notes](https://github.com/nodejs/undici/releases) - [Commits](https://github.com/nodejs/undici/compare/v4.16.0...v5.18.0) Updates `hardhat` from 2.9.2 to 2.12.7 - [Release notes](https://github.com/nomiclabs/hardhat/releases) - [Commits](https://github.com/nomiclabs/hardhat/compare/hardhat@2.9.2...hardhat@2.12.7) --- updated-dependencies: - dependency-name: undici dependency-type: indirect - dependency-name: hardhat dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
30 lines
853 B
JSON
30 lines
853 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.12.7"
|
|
},
|
|
"dependencies": {
|
|
"dotenv": "^16.0.0"
|
|
}
|
|
}
|