package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "hardhat-boilerplate",
  3. "version": "1.0.0",
  4. "description": "A boilerplate repository to get you started with Hardhat and Ethereum development",
  5. "scripts": {
  6. "test": "hardhat test"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/NomicFoundation/hardhat-boilerplate.git"
  11. },
  12. "author": "Nomic Foundation",
  13. "license": "MIT",
  14. "bugs": {
  15. "url": "https://github.com/NomicFoundation/hardhat-boilerplate/issues"
  16. },
  17. "homepage": "https://github.com/NomicFoundation/hardhat-boilerplate#readme",
  18. "devDependencies": {
  19. "@ethersproject/abi": "^5.4.7",
  20. "@ethersproject/providers": "^5.4.7",
  21. "@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
  22. "@nomicfoundation/hardhat-network-helpers": "^1.0.0",
  23. "@nomicfoundation/hardhat-toolbox": "^1.0.1",
  24. "@nomiclabs/hardhat-ethers": "^2.0.0",
  25. "@nomiclabs/hardhat-etherscan": "^3.0.0",
  26. "chai": "^4.2.0",
  27. "ethers": "^5.4.7",
  28. "hardhat": "^2.12.4",
  29. "hardhat-gas-reporter": "^1.0.8",
  30. "solidity-coverage": "^0.7.21"
  31. }
  32. }