-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.47 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "zkcertree",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"author": "Rodrigo Q. Saramago",
"license": "GPL-3.0",
"scripts": {
"zk:tau": "./scripts/zkp_setup.sh -download-tau",
"zk:phase1": "./scripts/zkp_setup.sh -phase1",
"zk:compile": "./scripts/zkp_setup.sh -compile",
"zk:phase2": "./scripts/zkp_setup.sh -phase2",
"zk:gen:verifier": "./scripts/zkp_setup.sh -export-vkey",
"zk:gen:sol_verifier": "./scripts/zkp_setup.sh -gen-vcontract",
"zk:gen:witness": "./scripts/zkp_setup.sh -gen-witness",
"zk:gen:proof": "./scripts/zkp_setup.sh -gen-proof",
"zk:gen:fullproof": "./scripts/zkp_setup.sh -gen-fullproof",
"zk:gen:calldata": "./scripts/zkp_setup.sh -gen-calldata",
"zk:verify": "./scripts/zkp_setup.sh -verify",
"zk:clean": "rm -rf ./build/{issue,approve12,presentationAuth12,score12,presentationFieldsAuth12} ./hardhat-cache ./forge-cache ./private/*/witness.* ./contracts/*Verifier.sol",
"compile:hasher": "npx hardhat hasher",
"forge:test": "forge test",
"compile": "npx hardhat compile && npm run compile:hasher",
"deploy": "npx hardhat run scripts/deploy.js --network rinkeby",
"test": "npx hardhat test",
"eslint": "eslint --ext .js --ignore-path .gitignore .",
"prettier:check": "prettier --check . --config .prettierrc",
"prettier:fix": "prettier --write . --config .prettierrc",
"lint": "npm run eslint src && npm run prettier:check"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"blake-hash": "^2.0.0",
"circom_tester": "^0.0.12",
"circomlib": "^2.0.3",
"circomlibjs": "^0.1.2",
"dotenv": "^16.0.1",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.8",
"ffjavascript": "^0.2.54",
"fixed-merkle-tree": "git+https://github.com/r0qs/fixed-merkle-tree.git",
"document-tree": "file:../document-tree",
"hardhat": "^2.9.9",
"hardhat-gas-reporter": "^1.0.8",
"snarkjs": "^0.4.16",
"web3": "^1.7.3"
},
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"hardhat-preprocessor": "^0.1.4",
"babel-eslint": "^10.1.0",
"chai": "^4.3.6",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.21"
}
}