one-of-ones
Version:
Solidity smart contract to mint 1/1s NFTs (one of ones) implementing ERC721A.
43 lines (42 loc) • 1.13 kB
JSON
{
"name": "one-of-ones",
"version": "2.0.3",
"description": "Solidity smart contract to mint 1/1s NFTs (one of ones) implementing ERC721A.",
"scripts": {
"node": "hardhat node",
"test": "hardhat test",
"test:gas": "REPORT_GAS=true npx hardhat test",
"lint": "npm run lint:js && npm run lint:sol",
"lint:js": "eslint --ignore-path .gitignore . --fix",
"lint:sol": "prettier --write \"contracts/**/*.sol\""
},
"keywords": [
"solidity",
"smart contract",
"erc721a",
"erc721",
"nft"
],
"author": "notuart",
"license": "MIT",
"dependencies": {
"base64-sol": "1.1.0",
"dotenv": "^16.0.0",
"erc721a": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notuart/one-of-ones.git"
},
"bugs": {
"url": "https://github.com/notuart/one-of-ones/issues"
},
"homepage": "https://github.com/notuart/one-of-ones#readme",
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^3.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"chai": "^4.3.6",
"hardhat": "^2.8.4",
"hardhat-gas-reporter": "^1.0.8"
}
}