-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
33 lines (33 loc) · 985 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
30
31
32
33
{
"name": "zero-knowledge-puzzles",
"version": "1.0.0",
"description": "Zero Knowledge Puzzles by RareSkills",
"main": "index.js",
"scripts": {
"test": "mocha",
"docker:build": "docker build -t zk-puzzles .",
"docker:run": "if [ -z $(docker images -q zk-puzzles) ]; then npm run docker:build; fi && docker run -v $(pwd):/app zk-puzzles",
"docker:test": "npm run docker:run test --"
},
"author": "Rareskills",
"license": "GNU GENERAL PUBLIC LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/RareSkills/zero-knowledge-puzzles"
},
"dependencies": {
"@nomiclabs/hardhat-waffle": "^2.0.5",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"circom_tester": "^0.0.19",
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.7",
"fs": "^0.0.1-security",
"mocha": "^10.2.0",
"snarkjs": "^0.6.10"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.2",
"ethereum-waffle": "^4.0.10"
}
}