tornado-nova/package.json

60 lines
2.1 KiB
JSON
Raw 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-06-07 12:12:15 +02:00
"compile": "npx hardhat compile",
"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 14:31:19 +02:00
"download": "curl -L https://github.com/tornadocash/tornado-pool/releases/download/tmp/ptau15 --create-dirs -o artifacts/circuits/ptau15",
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",
2021-08-02 20:33:24 +02:00
"@openzeppelin/contracts": "git+https://github.com/tornadocash/openzeppelin-contracts.git#6e46aa6946a7f215e7604169ddf46e1aebea850f",
2021-08-05 09:29:49 +02:00
"@openzeppelin/contracts-upgradeable": "3.4.1",
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",
2021-07-06 23:10:18 +02:00
"snarkjs": "git+https://github.com/tornadocash/snarkjs.git#616c2d30699f28c8f3ab737b877402ccbb604cfe",
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-07-06 23:11:30 +02:00
"@eth-optimism/hardhat-ovm": "^0.2.2",
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
}
}