mirror of
https://github.com/CryptKeeperZK/semaphore.git
synced 2026-01-09 15:37:57 -05:00
77 lines
2.6 KiB
JSON
77 lines
2.6 KiB
JSON
{
|
|
"name": "@cryptkeeperzk/semaphore-cli-template-contracts-hardhat",
|
|
"private":"true",
|
|
"version": "3.10.1",
|
|
"description": "Semaphore Hardhat template.",
|
|
"license": "Unlicense",
|
|
"files": [
|
|
"files.tgz",
|
|
"contracts/",
|
|
"scripts/",
|
|
"tasks/",
|
|
"test/",
|
|
".env.example",
|
|
"hardhat.config.ts",
|
|
"tsconfig.json",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"dev": "hardhat node & yarn compile && yarn deploy --network localhost",
|
|
"compile": "hardhat compile",
|
|
"download:snark-artifacts": "hardhat run scripts/download-snark-artifacts.ts",
|
|
"deploy": "yarn compile && hardhat deploy",
|
|
"test": "hardhat run scripts/download-snark-artifacts.ts && hardhat test",
|
|
"test:report-gas": "REPORT_GAS=true hardhat test",
|
|
"test:coverage": "hardhat coverage",
|
|
"typechain": "hardhat typechain",
|
|
"prepublish": "tar -czf files.tgz .gitignore"
|
|
},
|
|
"devDependencies": {
|
|
"@cryptkeeperzk/semaphore-group": "3.10.1",
|
|
"@cryptkeeperzk/semaphore-identity": "3.10.1",
|
|
"@cryptkeeperzk/semaphore-proof": "3.10.1",
|
|
"@ethersproject/abi": "^5.4.7",
|
|
"@ethersproject/providers": "^5.4.7",
|
|
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
|
|
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
|
|
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
|
|
"@nomiclabs/hardhat-ethers": "^2.0.0",
|
|
"@nomiclabs/hardhat-etherscan": "^3.0.0",
|
|
"@semaphore-protocol/hardhat": "3.10.1",
|
|
"@typechain/ethers-v5": "^10.1.0",
|
|
"@typechain/hardhat": "^6.1.2",
|
|
"@types/chai": "^4.2.0",
|
|
"@types/download": "^8.0.1",
|
|
"@types/mocha": "^9.1.0",
|
|
"@types/node": ">=12.0.0",
|
|
"chai": "^4.2.0",
|
|
"dotenv": "^16.0.3",
|
|
"download": "^8.0.0",
|
|
"ethers": "^5.4.7",
|
|
"hardhat": "^2.11.0",
|
|
"hardhat-gas-reporter": "^1.0.8",
|
|
"solidity-coverage": "^0.8.1",
|
|
"ts-node": ">=8.0.0",
|
|
"typechain": "^8.1.0",
|
|
"typescript": ">=4.5.0"
|
|
},
|
|
"dependencies": {
|
|
"@semaphore-protocol/contracts": "3.10.1"
|
|
},
|
|
"config": {
|
|
"solidity": {
|
|
"version": "0.8.4"
|
|
},
|
|
"paths": {
|
|
"contracts": "./contracts",
|
|
"tests": "./test",
|
|
"cache": "./cache",
|
|
"build": {
|
|
"snark-artifacts": "./build/snark-artifacts",
|
|
"contracts": "./build/contracts",
|
|
"typechain": "./build/typechain"
|
|
}
|
|
}
|
|
}
|
|
}
|