UNPKG

nosu-nfts

Version:
66 lines (65 loc) 2.57 kB
{ "name": "nosu-nfts", "version": "0.0.1", "description": "ERC721A base contract for Nosu", "main": "index.js", "files": [ "abi/*.json", "contractsAddressDeployed.json", "LICENSE", "README.md" ], "scripts": { "build": "npx awesome-readme && npx hardhat run scripts/buildAbi.js && npx hardhat run scripts/buildRootAndProofs.js", "test": "npm run build && npx hardhat test && forge test", "coverage": "npx hardhat coverage", "flatten": "mkdir -p contractsFlatten && npx hardhat flatten > contractsFlatten/Flat.sol && npx hardhat flatten contracts/NosuWorld.sol > contractsFlatten/NosuWorldFlat.sol", "coverage:flatten": "npx hardhat coverage --config hardhat.flat.config.js", "prettier-test": "prettier --write test/", "prettier-scripts": "prettier --write scripts/", "prettier-contracts": "prettier --write contracts/", "prettier-foundry-contracts": "prettier --write contracts/test/", "deploy-test": "npx hardhat run scripts/deploy.js", "deploy-localhost": "npx hardhat run scripts/deploy.js --network localhost", "deploy-goerli": "npx hardhat run scripts/deploy.js --network goerli", "deploy-mainnet": "npx hardhat run scripts/deploy.js --network mainnet" }, "repository": { "type": "git", "url": "git+https://github.com/marc-aurele-besner/nosu-nfts.git" }, "keywords": [ "nosu", "smart-contracts", "solidity", "erc721a" ], "author": "", "license": "MIT", "bugs": { "url": "https://github.com/marc-aurele-besner/nosu-nfts/issues" }, "homepage": "https://github.com/marc-aurele-besner/nosu-nfts#readme", "dependencies": { "@openzeppelin/contracts": "^4.7.3", "erc721a": "^4.2.3" }, "devDependencies": { "@nomicfoundation/hardhat-toolbox": "^2.0.0", "@nomiclabs/hardhat-ethers": "^2.2.0", "awesome-readme": "^0.0.8", "dotenv": "^16.0.3", "ethers": "^5.7.2", "foundry-test-utility": "^0.0.7", "fs": "^0.0.1-security", "hardhat": "^2.12.0", "hardhat-awesome-cli": "^0.0.19", "hardhat-etherscan": "^1.0.1", "hardhat-gas-reporter": "^1.0.9", "keccak256": "^1.0.6", "merkletreejs": "^0.2.32", "prettier": "^2.7.1", "prettier-plugin-solidity": "^1.0.0-beta.24", "solidity-coverage": "^0.8.2" } }