forked from Kaviar-Network/Kaviar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
{
"name": "play-contracts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run compile:circuits && npm run setup && npm run compile",
"compile": "hardhat compile && typechain --out-dir types --target ethers-v5 './artifacts/contracts/**/!(*.dbg).json'",
"compile:circuits": "mkdir -p build && circom circuits/withdraw.circom --r1cs --wasm -o build",
"setup": "sh quickSetup.sh",
"info": "snarkjs info -r build/withdraw.r1cs",
"test": "hardhat test tests/*",
"format": "prettier --write .",
"lint": "prettier --check ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@openzeppelin/contracts": "^4.7.2",
"@typechain/ethers-v5": "^7.2.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^8.2.3",
"@types/node": "^16.11.25",
"circomlib": "^2.0.2",
"circomlibjs": "0.1.1",
"chai": "^4.3.6",
"ethers": "^5.5.4",
"hardhat": "^2.8.4",
"mocha": "^9.2.0",
"prettier": "2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"snarkjs": "^0.4.13",
"ts-node": "^10.5.0",
"typechain": "^5.2.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@axelar-network/axelar-gmp-sdk-solidity": "^3.3.0",
"dotenv": "^16.3.1",
"circomlib": "^2.0.2",
"circomlibjs": "0.1.1"
}
}