-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.2 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
65
66
{
"name": "zk-erc20",
"version": "1.0.0",
"description": "zk transfers of assets",
"main": "index.js",
"keywords": [],
"author": "SleepingShell",
"license": "ISC",
"scripts": {
"build": "npm run compile:circuits && npm run compile",
"clean": "hardhat clean",
"clean:circuits": "rm -rf build && rm contracts/*_Verifier.sol",
"clean:types": "rm -rf types",
"compile": "hardhat compile",
"compile:circuits": "shield compile",
"debug": "shield debug",
"info": "snarkjs info -r circuits/build/Multiplier/Multiplier.r1cs",
"test": "hardhat test",
"types": "hardhat typechain",
"node": "hardhat node",
"deploy:localhost": "npx hardhat run --network localhost scripts/deploy.ts",
"prepare": "husky install",
"githook:precommit": "npx pretty-quick --staged",
"test-circuit": "hardhat test test/circuit*",
"deploy:sepolia": "hardhat run --network sepolia scripts/deploy.ts",
"deploy:mock": "hardhat --network sepolia deployMock"
},
"dependencies": {
"@metamask/eth-sig-util": "^5.0.2",
"@openzeppelin/contracts": "^4.8.1",
"@zk-kit/incremental-merkle-tree": "^1.0.0",
"@zk-kit/incremental-merkle-tree.sol": "^1.3.3",
"circom_tester": "0.0.18",
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.7",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"ffjavascript": "^0.2.57",
"hardhat": "^2.10.1",
"snarkjs": "^0.4.22"
},
"devDependencies": {
"@ethersproject/abi": "^5.6.4",
"@ethersproject/providers": "^5.6.8",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.3",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/jest": "^28.1.6",
"chai": "^4.3.6",
"ethers": "^5.6.9",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-tracer": "^1.2.1",
"husky": "^8.0.0",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"solidity-coverage": "^0.7.21",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.7.4"
}
}