Files
semaphore/package.json
Andrija Novakovic bc4b0acefd deploy scripts with hardhat-deploy module
Former-commit-id: 16b46efcab
2021-10-21 00:14:20 +02:00

43 lines
1.3 KiB
JSON

{
"name": "semaphore",
"version": "2.0.0",
"description": "Solidity contracts, zk-SNARK circuits, and test scripts for the Semaphore zero-knowledge signalling gadget. This version uses the Poseidon hash and does not use EdDSA signatures.",
"scripts": {
"test": "npx hardhat test",
"compile": "npx hardhat compile",
"develop": "npx hardhat node",
"deploy": "npx hardhat deploy --tags complete",
"deployPoseidon": "npx hardhat deploy --tags poseidon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appliedzkp/semaphore.git.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/appliedzkp/semaphore.git/issues"
},
"homepage": "https://github.com/appliedzkp/semaphore.git#readme",
"dependencies": {
"@libsem/identity": "^1.0.8",
"@libsem/protocols": "^1.0.9",
"circomlib": "^0.5.3",
"hardhat-deploy": "^0.9.4",
"web3": "^1.5.2"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.6",
"hardhat": "^2.6.1",
"http-server": "^13.0.1",
"snarkjs": "^0.4.7",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}