-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.45 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
46
47
{
"name": "tornado-trees-proposal",
"version": "0.0.1",
"main": "src/index.js",
"repository": "https://github.com/tornadocash/tornado-trees-proposal.git",
"author": "Tornadocash team <[email protected]>",
"license": "MIT",
"files": [
"src/*",
"contracts/*"
],
"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",
"changeTreeHeight": "cd node_modules/tornado-trees && yarn changeTreeHeight 2"
},
"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"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"dotenv": "^8.2.0",
"eth-ens-namehash": "^2.0.8",
"fixed-merkle-tree": "^0.5.0",
"jszip": "^3.6.0",
"torn-token": "^1.0.0",
"tornado-anonymity-mining": "^2.1.2",
"tornado-cli": "0.0.1",
"tornado-trees": "^0.0.11"
}
}