-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
33 lines (33 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
30
31
32
33
{
"name": "zeto",
"version": "0.0.1",
"description": "Zero knowledge proof based UTXO tokens toolkit for fungible or non-fungible assets",
"main": "index.js",
"scripts": {
"prettier": "npx prettier contracts scripts ignition test --check",
"prettier:fix": "npm run prettier -- --write",
"pretest": "npm run prettier:fix",
"test": "npx hardhat test"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@iden3/js-merkletree": "^1.2.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"circomlibjs": "^0.1.7",
"maci-crypto": "1.1.1",
"prettier": "^3.3.3",
"snarkjs": "0.7.5",
"zeto-js": "file:../zkp/js"
},
"dependencies": {
"@iden3/contracts": "^2.5.0",
"@openzeppelin/contracts": "^5.1.0",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"@openzeppelin/hardhat-upgrades": "^3.2.1",
"async-lock": "^1.4.1"
}
}