Files
maci-wrapper/packages/hardhat/package.json
2024-04-10 17:22:28 +05:30

69 lines
2.5 KiB
JSON

{
"name": "@se-2/hardhat",
"version": "0.0.1",
"scripts": {
"account": "hardhat run scripts/listAccount.ts",
"chain": "hardhat node --network hardhat --no-deploy",
"compile": "./maci-scripts/compileSol.sh",
"deploy": "yarn compile && hardhat deploy",
"flatten": "yarn compile && hardhat flatten",
"fork": "MAINNET_FORKING_ENABLED=true hardhat node --network hardhat --no-deploy",
"format": "prettier --write ./*.ts ./deploy/**/*.ts ./scripts/**/*.ts ./test/**/*.ts",
"generate": "hardhat run scripts/generateAccount.ts",
"hardhat-verify": "hardhat verify",
"lint": "eslint --config ./.eslintrc.json --ignore-path ./.eslintignore ./*.ts ./deploy/**/*.ts ./scripts/**/*.ts ./test/**/*.ts",
"lint-staged": "eslint --config ./.eslintrc.json --ignore-path ./.eslintignore",
"test": "REPORT_GAS=true hardhat test --network hardhat",
"verify": "hardhat etherscan-verify"
},
"dependencies": {
"@commander-js/extra-typings": "^12.0.1",
"@openzeppelin/contracts": "~4.8.1",
"@typechain/ethers-v6": "~0.5.1",
"@zk-kit/eddsa-poseidon": "^0.11.0",
"@zk-kit/poseidon-cipher": "^0.3.0",
"benny": "^3.7.1",
"circomkit": "^0.0.24",
"circomlibjs": "^0.1.7",
"dotenv": "~16.0.3",
"envfile": "~6.18.0",
"hardhat-artifactor": "^0.2.0",
"prompt": "^1.3.0",
"qrcode": "~1.5.1",
"snarkjs": "^0.7.3"
},
"devDependencies": {
"@ethersproject/abi": "~5.7.0",
"@ethersproject/providers": "~5.7.1",
"@nomicfoundation/hardhat-chai-matchers": "~2.0.3",
"@nomicfoundation/hardhat-ethers": "~3.0.5",
"@nomicfoundation/hardhat-network-helpers": "~1.0.6",
"@nomicfoundation/hardhat-verify": "~2.0.3",
"@typechain/ethers-v5": "~10.1.0",
"@typechain/hardhat": "~9.1.0",
"@types/circomlibjs": "^0",
"@types/eslint": "~8",
"@types/mocha": "~9.1.1",
"@types/prettier": "~2",
"@types/prompt": "^1",
"@types/qrcode": "~1",
"@types/snarkjs": "^0",
"@typescript-eslint/eslint-plugin": "~6.7.3",
"@typescript-eslint/parser": "~6.7.3",
"chai": "~4.3.6",
"eslint": "~8.26.0",
"eslint-config-prettier": "~8.5.0",
"eslint-plugin-prettier": "~4.2.1",
"ethers": "~6.10.0",
"hardhat": "~2.19.4",
"hardhat-deploy": "^0.12.2",
"hardhat-deploy-ethers": "~0.4.1",
"hardhat-gas-reporter": "~1.0.9",
"prettier": "~2.8.4",
"solidity-coverage": "~0.8.5",
"ts-node": "~10.9.1",
"typechain": "~8.1.0",
"typescript": "~5.1.6"
}
}