-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
29 lines (29 loc) · 940 Bytes
/
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": "circom-poc",
"packageManager": "[email protected]",
"scripts": {
"build:circom": "npx gulp",
"build:ts": "tsc",
"build": "npm run build:circom && npm run build:ts",
"setup": "cd setup && snarkjs powersoftau new bn128 16 pot16_0000.ptau -v && snarkjs powersoftau contribute pot16_0000.ptau pot16_0001.ptau -v && snarkjs powersoftau prepare phase2 pot16_0001.ptau pot16_final.ptau -v",
"start": "npm run build:ts && node build/src/index.js",
"test": "npm run build:ts && mocha build/test/*.js"
},
"dependencies": {
"@guildofweavers/galois": "^0.4.22",
"circom": "^0.5.45",
"circomlib": "^0.5.3",
"ffjavascript": "^0.2.38",
"snarkjs": "^0.4.7"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.2",
"chai": "^4.3.4",
"gulp": "^4.0.2",
"gulp-exec": "^5.0.0",
"mocha": "^9.1.2",
"ts-node": "^10.3.0",
"typescript": "^4.4.3"
}
}