-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.15 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
67
68
69
{
"name": "kaviar",
"version": "1.0.0",
"description": "Regulatory-compliant Currency-Mixer enabled by Privacy Pools",
"license": "MIT",
"scripts": {
"deploy_subset": "cargo run deploy_subset",
"blacklist": "cargo run blacklist",
"unblacklist": "cargo run unblacklist",
"allowlist": "cargo run allowlist",
"unallowlist": "cargo run unallowlist",
"deposit": "hardhat run scripts/deposit.ts",
"withdraw": "hardhat run scripts/withdraw.ts",
"circuit_info": "snarkjs info -r build/withdraw_from_subset.r1cs",
"format": "prettier --write .",
"lint": "prettier --check .",
"dev": "cd frontend/kaviar && next dev",
"build": "cd frontend/kaviar && next build",
"start": "cd frontend/kaviar && next start"
},
"keywords": [],
"author": "Arindam Singh",
"dependencies": {
"@ethersproject/solidity": "^5.7.0",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.7.2",
"@typechain/ethers-v5": "^11.1.1",
"@types/chai": "^4.3.0",
"@types/mocha": "^8.2.3",
"@types/node": "^16.11.25",
"@walletconnect/ethereum-provider": "^2.11.1",
"@walletconnect/modal": "^2.6.2",
"@walletconnect/web3wallet": "^1.10.1",
"autoprefixer": "10.4.14",
"chai": "^4.3.6",
"chalk": "4.1.2",
"circom": "^0.5.46",
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.7",
"dotenv": "^16.4.5",
"ethers": "^5.5.4",
"fixed-merkle-tree": "^0.7.3",
"hardhat": "^2.8.4",
"magic-sdk": "^16.2.0",
"mocha": "^10.3.0",
"moralis": "^2.18.4",
"moralis-v1": "^1.12.0",
"next": "14.1.0",
"postcss": "^8",
"prettier": "2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-moralis": "^1.4.2",
"snarkjs": "^0.7.3",
"tailwindcss": "3.3.1",
"ts-node": "^10.5.0",
"typechain": "^8.3.1",
"vmtree-sdk": "vmtree/sdk#d2b1b91c24ec8a4e70058f9f2b0db0b9651ae948"
},
"devDependencies": {
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack-cli": "^5.1.4"
}
}