forked from privacy-scaling-explorations/maci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "maci-integrationtests",
"version": "2.5.0",
"description": "",
"main": "build/ts/index.js",
"files": [
"build",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"types": "tsc -p tsconfig.json --noEmit",
"test": "ts-mocha --exit ./ts/__tests__/**.test.ts",
"test:integration": "NODE_OPTIONS=--max-old-space-size=4096 ts-mocha --exit ./ts/__tests__/integration.test.ts",
"test:maciKeys": "ts-mocha --exit ./ts/__tests__/maci-keys.test.ts"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.8",
"@types/node": "^22.9.0",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.2",
"hardhat": "^2.22.8",
"hardhat-artifactor": "^0.2.0",
"hardhat-contract-sizer": "^2.0.3",
"mocha": "^10.7.3",
"ts-mocha": "^10.0.0",
"typescript": "^5.6.3"
},
"dependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"ethers": "^6.13.4",
"maci-circuits": "^2.5.0",
"maci-cli": "^2.5.0",
"maci-contracts": "^2.5.0",
"maci-core": "^2.5.0",
"maci-crypto": "^2.5.0",
"maci-domainobjs": "^2.5.0"
}
}