-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 1.25 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
{
"scripts": {
"test": "ts-mocha --timeout 500000 ./test/game.test.ts",
"test-circuits": "ts-mocha --timeout 500000 ./test/circuits.test.ts",
"test-poseidon": "ts-mocha --timeout 500000 ./src/poseidon_encryption/test/poseidonEncryption.test.ts",
"clean-setup": "rm -r ./circuits/artifacts/setup && rm ./circuits/artifacts/*.json",
"clean-artifacts": "rm -r ./circuits/artifacts",
"ptau": "./scripts/ptau.sh",
"setup": "./scripts/circuits.sh"
},
"dependencies": {
"@project-serum/anchor": "0.24.1",
"@types/chalk": "^2.2.0",
"@types/clui": "^0.3.1",
"chalk-animation": "^2.0.3",
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.7",
"clui": "^0.3.6",
"enquirer": "^2.3.6",
"ffjavascript": "^0.2.57",
"figlet": "^1.5.2",
"maci-crypto": "^1.1.2",
"snarkjs": "^0.6.7"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/figlet": "^1.5.5",
"@types/mocha": "^9.0.0",
"@types/node": "^18.15.3",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"mocha": "^9.0.3",
"ts-mocha": "^8.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}