create-web3
Version:
A boilerplate for creating a web3 projects
28 lines (27 loc) • 826 B
JSON
{
"name": "@create-web3/hardhat",
"version": "1.0.0",
"description": "mono repo with hardhat and next",
"private": true,
"scripts": {
"chain": "hardhat node --network hardhat --no-deploy",
"clean": "npx hardhat clean",
"deploy": "hardhat deploy --export-all ../../vite/typescript/contracts/hardhat_contracts.json",
"compile": "hardhat compile",
"test": "hardhat test"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.10",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.6.0",
"chai": "^4.3.6",
"ethereum-waffle": "^4.0.9",
"ethers": "^5.7.2",
"hardhat": "^2.12.6",
"hardhat-deploy": "^0.11.23"
},
"dependencies": {
"dotenv": "^16.0.0"
}
}