-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.02 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
{
"name": "zk101",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cd frontend && yarn dev",
"genKeyPhase1": "bash ./circuit/scripts/generate_keys_phase1.sh",
"genKeyPhase2Plonk": "bash ./circuit/scripts/generate_keys_phase2_plonk.sh",
"genKeyPhase2Groth": "bash ./circuit/scripts/generate_keys_phase2_groth16.sh",
"genProofPlonk": "bash ./circuit/scripts/generate_proof_plonk.sh",
"genProofGroth": "bash ./circuit/scripts/generate_proof_groth16.sh",
"verifyProofPlonk": "bash ./circuit/scripts/verify_proof_plonk.sh",
"verifyProofGroth": "bash ./circuit/scripts/verify_proof_groth16.sh",
"compile": "bash ./circuit/scripts/compile_circuit.sh",
"genContract": "bash ./circuit/scripts/generate_contract.sh",
"genCalldata": "bash ./circuit/scripts/generate_calldata.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"circomlib": "^2.0.5",
"snarkjs": "0.4.22"
},
"devDependencies": {
"hardhat": "^2.12.2"
}
}