Files
rln-interep-contract/package.json
2022-12-07 18:57:55 +05:30

53 lines
1.7 KiB
JSON

{
"name": "rln-interep-contracts",
"license": "MIT",
"scripts": {
"start": "ganache --chain.chainId 31337 --wallet.accounts=0x3c914dff62bd200e1e1b1af9d40eace4bc70875d1007b8cad4a950d3c7b3e442,1000000000000000000",
"compile": "hardhat compile",
"test": "hardhat test",
"test:localhost": "yarn test --network localhost",
"deploy": "hardhat deploy --network",
"deploy:goerli": "yarn deploy goerli",
"deploy:localhost": "yarn deploy localhost",
"deploy:localhost_integration": "yarn deploy localhost_integration --reset",
"e2e": "yarn ts-node ./e2e/e2e",
"coverage": "hardhat coverage",
"fmt": "prettier --write \"**/*.{js,ts}\"",
"lint": "prettier --check \"**/*.{js,ts}\"",
"prepare": "husky install",
"ui": "yarn --cwd ui start",
"proof": "yarn ts-node e2e/get-proof"
},
"devDependencies": {
"@interep/contracts": "0.6.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@semaphore-protocol/contracts": "2.0.0",
"@interep/identity": "0.3.0",
"@interep/proof": "0.7.0",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.2",
"hardhat": "^2.9.9",
"hardhat-deploy": "0.11.20",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.8.0",
"solidity-coverage": "^0.7.21",
"ts-node": "^10.8.1",
"typescript": "^4.7.4",
"ganache": "7.5.0"
},
"dependencies": {
"dotenv": "^16.0.1"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown"
]
}
}