tornado-nova/package.json

64 lines
2.5 KiB
JSON
Raw Permalink Normal View History

2020-04-08 11:41:12 +02:00
{
"name": "tornado-pool",
"version": "1.0.0",
"description": "",
2021-06-03 20:56:46 +02:00
"main": "src/index.js",
2020-04-08 11:41:12 +02:00
"directories": {
"test": "test"
},
"scripts": {
"circuit": "./scripts/buildCircuit.sh 2 && ./scripts/buildCircuit.sh 16",
2021-10-18 11:26:37 +02:00
"circuit_prod": "rm -rf ./artifacts/circuits && yarn changeTreeHeight 23 && ./scripts/buildCircuit_prod.sh 2 && ./scripts/buildCircuit_prod.sh 16 && tar -czvf artifacts/circuits.tar.gz artifacts/circuits",
"changeTreeHeight": "./scripts/changeTreeHeight.sh",
2021-10-19 11:16:38 +02:00
"compile:hasher": "npx hardhat hasher",
"compile": "npx hardhat compile && yarn compile:hasher",
2021-06-07 12:12:15 +02:00
"build": "npm run circuit && npm run compile",
2021-07-08 19:50:44 +02:00
"deploy": "npx hardhat run scripts/deploy.js --network optimism",
2021-06-16 02:31:31 +02:00
"test": "npx hardhat test",
"eslint": "eslint --ext .js --ignore-path .gitignore .",
"prettier:check": "prettier --check . --config .prettierrc",
"prettier:fix": "prettier --write . --config .prettierrc",
"lint": "yarn eslint && yarn prettier:check"
2020-04-08 11:41:12 +02:00
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
2021-06-03 20:56:46 +02:00
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin": "git+https://github.com/tornadocash/openzeppelin-contracts.git#6e46aa6946a7f215e7604169ddf46e1aebea850f",
2021-09-07 12:07:31 +02:00
"@openzeppelin/contracts-upgradeable": "3.4.2",
2021-08-21 14:23:17 +02:00
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.3.0",
2020-04-09 11:04:06 +02:00
"bignumber.js": "^9.0.0",
2021-06-09 12:56:33 +02:00
"chai": "^4.3.4",
2021-06-09 12:30:08 +02:00
"circom": "^0.5.45",
"circom_runtime": "^0.1.13",
2021-06-06 19:31:32 +02:00
"circomlib": "git+https://github.com/tornadocash/circomlib.git#d20d53411d1bef61f38c99a8b36d5d0cc4836aa1",
2021-06-03 20:56:46 +02:00
"dotenv": "^10.0.0",
2021-06-15 14:48:26 +02:00
"eth-sig-util": "^3.0.1",
2021-06-03 20:56:46 +02:00
"ethereum-waffle": "^3.2.0",
"ethers": "^5.0.0",
2021-06-09 12:30:08 +02:00
"ffiasm": "^0.1.3",
"ffjavascript": "^0.2.36",
2021-07-06 23:08:27 +02:00
"fixed-merkle-tree": "^0.5.1",
2021-06-03 20:56:46 +02:00
"hardhat": "^2.3.0",
2021-08-21 14:23:17 +02:00
"mocha": "^9.1.0",
2022-02-08 17:13:15 +01:00
"omnibridge": "git+https://github.com/peppersec/omnibridge.git#30081f7a735eb03c9d6821a9617cc28efe71a682",
2021-10-06 19:14:28 +02:00
"prompt-sync": "^4.2.0",
2021-10-30 21:08:24 +02:00
"snarkjs": "git+https://github.com/tornadocash/snarkjs.git#f37f146948f3b28086493e71512006b030588fc2",
2021-08-21 14:23:17 +02:00
"tmp-promise": "^3.0.2",
"typechain": "^5.1.2"
2021-06-16 02:31:31 +02:00
},
"devDependencies": {
2021-12-11 11:40:27 +01:00
"@nomiclabs/hardhat-etherscan": "^2.1.8",
2021-06-16 02:31:31 +02:00
"babel-eslint": "^10.1.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solhint-plugin-prettier": "^0.0.5"
2020-04-08 11:41:12 +02:00
}
}