forked from privacy-scaling-explorations/maci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 2.33 KB
/
package.json
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
{
"name": "maci-contracts",
"version": "1.1.2",
"description": "Solidity Smart Contracts for MACI (Minimal Anti-Collusion Infrastructure)",
"main": "build/index.js",
"scripts": {
"watch": "tsc --watch",
"hardhat": "./scripts/runHardhat.sh",
"compileSol": "./scripts/compileSol.sh && cp -r artifacts/ ../integrationTests/artifacts",
"build": "tsc",
"test": "npx jest --runInBand",
"test-maci": "jest MACI.test.ts",
"test-maci-debug": "node --inspect-brk ./node_modules/.bin/jest MACI.test.ts",
"test-hasher": "jest Hasher.test.ts",
"test-hasher-debug": "node --inspect-brk ./node_modules/.bin/jest Hasher.test.ts",
"test-domainObjs": "jest DomainObjs.test.ts",
"test-domainObjs-debug": "node --inspect-brk ./node_modules/.bin/jest DomainObjs.test.ts",
"test-signupGatekeeper": "jest SignUpGatekeeper.test.ts",
"test-signupGatekeeper-debug": "node --inspect-brk ./node_modules/.bin/jest SignUpGatekeeper.test.ts",
"test-verifier": "jest Verifier.test.ts",
"test-verifier-debug": "node --inspect-brk ./node_modules/.bin/jest Verifier.test.ts",
"test-accQueue": "jest AccQueue.test.ts",
"test-accQueue-debug": "node --inspect-brk ./node_modules/.bin/jest AccQueue.test.ts",
"test-accQueueBenchmark": "jest AccQueueBenchmark.test.ts",
"test-accQueueBenchmark-debug": "node --inspect-brk ./node_modules/.bin/jest AccQueueBenchmark.test.ts"
},
"_moduleAliases": {
"@maci-contracts": "."
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@openzeppelin/contracts": "^4.8.0",
"argparse": "^1.0.10",
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.7",
"hardhat": "^2.12.2",
"hardhat-artifactor": "^0.2.0",
"hardhat-contract-sizer": "^2.0.3",
"module-alias": "^2.2.2",
"typescript": "^4.2.3"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"ethers": "^5.0.32",
"jest": "^26.6.3",
"maci-circuits": "^1.1.2",
"maci-core": "^1.1.2",
"maci-crypto": "^1.1.2",
"maci-domainobjs": "^1.1.2",
"shelljs": "^0.8.4",
"ts-jest": "^26.5.4"
},
"gitHead": "f567a17293114ba2d5e89c711d00a9f4c197f070"
}