wave-portal/package.json
2022-04-06 11:44:17 -04: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.3",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.2",
"hardhat": "^2.9.2"
},
"dependencies": {
"dotenv": "^16.0.0"
}
}