diff --git a/package.json b/package.json index 7719970..51ee6ba 100644 --- a/package.json +++ b/package.json @@ -1,48 +1,20 @@ { - "name": "@zoralabs/nft-editions-contracts", - "version": "1.0.1", - "description": "NFT Factory Contracts", - "main": "index.js", - "author": "ZORA", - "license": "GPL-3.0", - "private": false, - "files": [ - "typechain", - "contracts", - "deployments" - ], + "name": "base-ecosystem-starter", + "version": "0.1.0", + "private": true, + "license": "MIT", "scripts": { - "typechain": "hardhat typechain", - "compile": "hardhat compile", - "deploy": "hardhat deploy", + "build": "hardhat compile", "test": "hardhat test", - "build": "yarn run prepack", - "prepack": "hardhat compile" + "deploy:greeter:sepolia": "hardhat run scripts/deploy_greeter.ts --network baseSepolia", + "deploy:counter:sepolia": "hardhat run scripts/deploy_counter.ts --network baseSepolia", + "verify": "ts-node scripts/verify.ts" }, "devDependencies": { - "@nomiclabs/hardhat-waffle": "^2.0.1", - "@types/chai": "^4.2.21", - "@types/data-urls": "^2.0.1", - "@types/mocha": "^8.2.3", - "@types/node": "^16.4.0", - "chai": "^4.3.4", - "data-urls": "^3.0.0", - "ethereum-waffle": "^3.4.0", - "hardhat": "^2.5.0", - "hardhat-gas-reporter": "^1.0.4", - "ts-node": "^10.1.0", - "typescript": "^4.3.5", - "@nomiclabs/hardhat-ethers": "^2.0.2", - "@nomiclabs/hardhat-etherscan": "^2.1.4", - "@typechain/ethers-v5": "^7.1.0", - "@typechain/hardhat": "^2.3.0", - "hardhat-deploy": "^0.8.11", - "typechain": "^5.1.2", - "dotenv": "^10.0.0" - }, - "dependencies": { - "@openzeppelin/contracts-upgradeable": "^4.7.3", - "base64-sol": "^1.0.1", - "ethers": "^5.4.1" + "@nomicfoundation/hardhat-toolbox": "^5.0.0", + "dotenv": "^16.4.5", + "hardhat": "^2.22.10", + "ts-node": "^10.9.2", + "typescript": "^5.6.3" } }