forked from 0xbow-io/privacy-pool-V1.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1 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
{
"name": "privacy-pool-v1",
"type": "module",
"private": true,
"version": "1.0",
"description": "Privacy Pool V1",
"repository": "https://github.com/0xbow-io/privacy-pool-V1.0",
"license": "MIT",
"author": "0xBow",
"workspaces": [
"packages/*"
],
"scripts": {
"build:privacypool:circom": "bun run ./packages/zero-knowledge/scripts/privacy-pool/buildCircuit.sh",
"test:contracts": "bunx jest --testPathPattern=./packages/contracts/ts/privacy-pool/classes/.*\\.test\\.ts$",
"test:privacypool:circom": "bun --filter @privacy-pool-v1/zero-knowledge test:privacypool",
"contracts:compile": "bun --filter=\"@privacy-pool-v1/contracts\" compile",
"contracts:test": "bun --filter=\"@privacy-pool-v1/contracts\" test",
"webapp:dev": "bun --filter @privacy-pool-v1/webapp dev"
},
"dependencies": {
"@zk-kit/circuits": "^1.0.0-beta",
"circomkit": "^0.2.1",
"circomlib": "^2.0.5",
"maci-circuits": "^1.2.5",
"snarkjs": "^0.7.4",
"poseidon-lite": "^0.3.0"
}
}