github.com/MetalBlockchain/subnet-evm@v0.4.9/contract-examples/package.json (about) 1 { 2 "name": "subnet-evm-contracts", 3 "devDependencies": { 4 "@nomiclabs/hardhat-ethers": "^2.0.2", 5 "@nomiclabs/hardhat-waffle": "^2.0.1", 6 "@openzeppelin/contracts": "^4.7.1", 7 "@types/chai": "^4.2.21", 8 "@types/mocha": "^9.0.0", 9 "@types/node": "^16.7.1", 10 "avalanche": "^3.8.5", 11 "chai": "^4.3.4", 12 "ethereum-waffle": "^3.4.0", 13 "ethereumjs-tx": "^2.1.2", 14 "ethers": "^5.4.5", 15 "hardhat": "2.6.1", 16 "prettier": "^2.5.1", 17 "prettier-plugin-solidity": "^1.0.0-beta.19", 18 "ts-node": "^10.2.1" 19 }, 20 "version": "1.0.0", 21 "description": "", 22 "main": "index.js", 23 "repository": "https://github.com/ava-labs/subnet-evm-contracts", 24 "license": "BSD-3-Clause", 25 "scripts": { 26 "compile": "npx hardhat compile", 27 "console": "npx hardhat console", 28 "pretest": "yarn compile", 29 "test": "npx hardhat test", 30 "erc20:deploy": "npx hardhat run scripts/deployERC20NativeMinter.ts", 31 "erc20:run": "npx hardhat run scripts/erc20NativeMinter.ts", 32 "prepublishOnly": "yarn test", 33 "lint": "prettier --list-different 'contracts/**/*.sol'", 34 "hardhat": "npx hardhat", 35 "accounts": "npx hardhat accounts", 36 "balances": "npx hardhat balances" 37 }, 38 "dependencies": { 39 "typescript": "^4.3.5" 40 }, 41 "engines": { 42 "node": ">=14.17.0" 43 } 44 }