-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.94 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "privote-contracts",
"version": "0.0.1",
"scripts": {
"account": "hardhat run scripts/listAccount.ts",
"chain": "hardhat node --network hardhat --no-deploy",
"compile": "hardhat compile",
"deploy": "yarn compile && hardhat deploy",
"deploy:multi": "yarn compile && POLL_TYPE=multi hardhat deploy",
"deploy:anonAadhaar": "yarn compile && POLL_TYPE=single GATEKEEPER_CONTRACT_NAME=AnonAadhaarGatekeeper hardhat deploy",
"deploy:anonAadhaar:multi": "yarn compile && POLL_TYPE=multi GATEKEEPER_CONTRACT_NAME=AnonAadhaarGatekeeper 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",
"download-zkeys": "./maci-scripts/download_zkeys.sh"
},
"dependencies": {
"@ethereum-attestation-service/eas-contracts": "^1.8.0",
"@ethereum-attestation-service/eas-sdk": "^2.7.0",
"@excubiae/contracts": "^0.11.0",
"@maci-protocol/circuits": "0.0.0-ci.de6bbd5",
"@maci-protocol/contracts": "0.0.0-ci.de6bbd5",
"@maci-protocol/core": "0.0.0-ci.de6bbd5",
"@maci-protocol/crypto": "0.0.0-ci.de6bbd5",
"@maci-protocol/domainobjs": "0.0.0-ci.de6bbd5",
"@typechain/ethers-v6": "^0.5.1",
"cids": "^1.1.9",
"dotenv": "~16.0.3",
"envfile": "~6.18.0",
"ethers": "6.15.0",
"hardhat": "^2.25.0",
"lowdb": "1.0.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "~2.0.3",
"@nomicfoundation/hardhat-ethers": "~3.0.9",
"@nomicfoundation/hardhat-ignition": "^0.15.11",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-network-helpers": "~1.0.6",
"@nomicfoundation/hardhat-verify": "~2.0.14",
"@typechain/hardhat": "~9.1.0",
"@types/chai": "^4.3.0",
"@types/eslint": "~8",
"@types/mocha": "^10.0.10",
"@types/node": "^20.0.0",
"@types/prettier": "~2",
"@types/snarkjs": "^0.7.8",
"@typescript-eslint/eslint-plugin": "~6.7.3",
"@typescript-eslint/parser": "~6.7.3",
"chai": "^4.3.10",
"eslint": "~8.26.0",
"eslint-config-prettier": "~8.5.0",
"eslint-plugin-prettier": "~4.2.1",
"hardhat-artifactor": "^0.2.0",
"hardhat-deploy": "^0.12.2",
"hardhat-deploy-ethers": "~0.4.1",
"hardhat-gas-reporter": "~1.0.9",
"prettier": "~2.8.4",
"snarkjs": "^0.7.4",
"solidity-coverage": "~0.8.5",
"ts-node": "^10.9.1",
"typechain": "^8.3.2",
"typescript": "^5.8.3"
}
}