-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.89 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
{
"name": "zk-photo",
"version": "2.0.0",
"description": "Private authenatic photo sharing using ZKP",
"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",
"test:fullProof": "npm run compile:circuits && npm run version:fix && npm run preprocess:image && npm run generate:proof && npm run postprocess:image && npm run compile:contracts && npx hardhat test",
"preprocess:image": "node scripts/slice-image && bash scripts/png2json.sh",
"postprocess:image": "bash scripts/json2png.sh && node scripts/combine-image && node scripts/png2json output && node scripts/png2base64",
"generate:proof": "bash scripts/generate-proof.sh",
"setup:circom": "bash scripts/setup-circom.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/socathie/zkPhoto.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/socathie/zkPhoto.git/issues"
},
"homepage": "https://github.com/socathie/zkPhoto.git#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@openzeppelin/contracts": "^3.4.2",
"chai": "^4.3.6",
"circomlib": "^2.0.2",
"circomlibjs": "^0.1.1",
"combine-image": "^1.0.3",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.4",
"get-pixels": "^3.3.3",
"hardhat": "^2.8.3",
"hardhat-contract-sizer": "^2.4.0",
"hardhat-deploy": "^0.10.4",
"hardhat-gas-reporter": "^1.0.7",
"save-pixels": "^2.3.6",
"sharp": "^0.30.0",
"snarkjs": "^0.4.13",
"svg-png-converter": "^0.0.9",
"web3-utils": "^1.7.0",
"zeros": "^1.0.0"
}
}