package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "tornado-anonymity-mining",
  3. "version": "2.1.5",
  4. "main": "index.js",
  5. "repository": "https://github.com/tornadocash/tornado-anonymity-mining.git",
  6. "author": "Tornadocash team <hello@tornado.cash>",
  7. "license": "MIT",
  8. "files": [
  9. "index.js",
  10. "src/*",
  11. "contracts/*"
  12. ],
  13. "scripts": {
  14. "compile": "truffle compile",
  15. "coverage": "yarn compile && truffle run coverage",
  16. "test": "truffle test",
  17. "test:stacktrace": "yarn test --stacktrace",
  18. "eslint": "eslint --ext .js --ignore-path .gitignore .",
  19. "prettier:check": "prettier --check . --config .prettierrc",
  20. "prettier:fix": "prettier --write . --config .prettierrc",
  21. "lint": "yarn eslint && yarn prettier:check",
  22. "verify": "truffle run verify --network $NETWORK",
  23. "circuit:reward": "scripts/buildCircuit.sh Reward",
  24. "circuit:withdraw": "scripts/buildCircuit.sh Withdraw",
  25. "circuit:treeUpdate": "scripts/buildCircuit.sh TreeUpdate",
  26. "circuit": "mkdir -p build/circuits && yarn circuit:reward && yarn circuit:withdraw && yarn circuit:treeUpdate"
  27. },
  28. "devDependencies": {
  29. "@openzeppelin/contracts": "^3.1.0",
  30. "babel-eslint": "^10.1.0",
  31. "bn-chai": "^1.0.1",
  32. "chai": "^4.2.0",
  33. "chai-as-promised": "^7.1.1",
  34. "circom": "0.0.35",
  35. "eslint": "^7.5.0",
  36. "eslint-config-prettier": "^6.11.0",
  37. "eslint-plugin-prettier": "^3.1.4",
  38. "prettier": "^2.1.2",
  39. "prettier-plugin-solidity": "^1.0.0-alpha.59",
  40. "rlp": "^2.2.6",
  41. "solhint-plugin-prettier": "^0.0.4",
  42. "solidity-coverage": "^0.7.7",
  43. "torn-token": "^1.0.0",
  44. "truffle": "^5.1.29",
  45. "truffle-flattener": "^1.4.4",
  46. "truffle-hdwallet-provider": "^1.0.17",
  47. "truffle-plugin-verify": "^0.3.11"
  48. },
  49. "dependencies": {
  50. "circomlib": "git+https://github.com/tornadocash/circomlib.git#3b492f9801573eebcfe1b6c584afe8a3beecf2b4",
  51. "decimal.js": "^10.2.0",
  52. "eth-sig-util": "^2.5.3",
  53. "fixed-merkle-tree": "^0.3.4",
  54. "snarkjs": "git+https://github.com/tornadocash/snarkjs.git#869181cfaf7526fe8972073d31655493a04326d5",
  55. "tornado-trees": "^0.0.11",
  56. "web3": "^1.2.11",
  57. "websnark": "git+https://github.com/tornadocash/websnark.git#86a526718cd6f6f5d31bdb1fe26a9ec8819f633e"
  58. }
  59. }