-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
44 lines (44 loc) · 1.44 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
{
"name": "zk-puzzles",
"version": "0.1.0",
"description": "Puzzles using ZKP",
"main": "index.js",
"scripts": {
"compile:contracts": "npx hardhat compile --force",
"develop": "npx hardhat node",
"deploy:localhost": "npx hardhat deploy --tags complete",
"test": "npx hardhat test",
"compile:circuits": "bash scripts/compile-circuits.sh",
"version:fix": "node scripts/bump-solidity",
"generate:proof": "bash scripts/generate-proof.sh",
"setup:circom": "bash scripts/setup-circom.sh",
"test:fullProof": "npm run compile:circuits && npm run version:fix && npm run generate:proof && npm run compile:contracts && npx hardhat test"
},
"repository": {
"type": "git",
"url": "https://github.com/socathie/zkPuzzles.git"
},
"author": "Cathie So, PhD",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/socathie/zkPuzzles/issues"
},
"homepage": "https://github.com/socathie/zkPuzzles#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"chai": "^4.3.6",
"circom_tester": "^0.0.10",
"circomlib": "^2.0.2",
"circomlib-matrix": "^1.0.0",
"circomlibjs": "^0.1.1",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.6.1",
"hardhat": "^2.9.1",
"hardhat-contract-sizer": "^2.4.0",
"hardhat-deploy": "^0.10.6",
"hardhat-gas-reporter": "^1.0.7",
"snarkjs": "^0.4.13",
"web3-utils": "^1.7.0"
}
}