tornado-trees/package.json

57 lines
1.9 KiB
JSON
Raw Permalink Normal View History

2021-02-01 14:40:32 +01:00
{
2021-02-07 11:36:36 +01:00
"name": "tornado-trees",
2021-03-22 18:28:56 +01:00
"version": "0.0.11",
2021-02-07 11:27:00 +01:00
"main": "src/index.js",
2021-02-02 12:27:58 +01:00
"repository": "https://github.com/tornadocash/tornado-trees.git",
"author": "Tornadocash team <hello@tornado.cash>",
"license": "MIT",
2021-02-07 11:27:00 +01:00
"files": [
"src/*",
2021-03-04 11:33:12 +01:00
"contracts/*",
"scripts/*"
2021-02-07 11:27:00 +01:00
],
2021-02-02 12:27:58 +01:00
"scripts": {
"compile": "npx hardhat compile",
"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",
2021-02-26 10:14:43 +01:00
"changeTreeHeight": "scripts/changeTreeHeight.sh",
2021-02-02 12:27:58 +01:00
"circuit:batchTreeUpdate": "scripts/buildCircuit.sh BatchTreeUpdate",
"circuit:batchTreeUpdateLarge": "scripts/buildCircuit.sh BatchTreeUpdate large",
"circuit:batchTreeUpdateWitness": "scripts/buildWitness.sh BatchTreeUpdate",
"circuit": "yarn circuit:batchTreeUpdate"
},
2021-02-01 14:40:32 +01:00
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"ethereum-waffle": "^3.2.2",
"ethers": "^5.0.26",
"hardhat": "^2.0.8",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.3",
"solhint-plugin-prettier": "^0.0.5",
"torn-token": "^1.0.0"
},
"dependencies": {
2021-02-26 12:01:34 +01:00
"@openzeppelin/contracts": "^3.4.0",
"@openzeppelin/upgrades-core": "^1.5.1",
"circom": "0.5.42",
2021-02-01 14:40:32 +01:00
"circom_runtime": "^0.1.12",
2021-02-02 13:23:09 +01:00
"circomlib": "git+https://github.com/tornadocash/circomlib.git#d20d53411d1bef61f38c99a8b36d5d0cc4836aa1",
2021-02-01 14:40:32 +01:00
"dotenv": "^8.2.0",
"ffiasm": "^0.1.1",
2021-03-04 11:00:14 +01:00
"ffjavascript": "^0.2.35",
2021-02-01 14:40:32 +01:00
"fixed-merkle-tree": "^0.5.0",
"jssha": "^3.2.0",
"snarkjs": "^0.3.57",
"tmp-promise": "^3.0.2"
}
}