package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "typescript-eth-solidity-hardhat-template",
  3. "version": "1.0.0",
  4. "description": "",
  5. "scripts": {
  6. "compile": "hardhat compile",
  7. "test": "hardhat test",
  8. "deploy": "hardhat deploy",
  9. "node": "hardhat node",
  10. "lint:fix": "prettier --write 'scripts/**/*.{js,ts}' 'test/**/*.{js,ts}' 'tasks/**/*.{js,ts}' && tslint --fix --config tslint.json --project tsconfig.json && solhint contracts/**/*.sol",
  11. "lint": "tslint --config tslint.json --project tsconfig.json && solhint contracts/**/*.sol",
  12. "format": "prettier --check \"**/*.{ts,js,sol}\"",
  13. "format:fix": "prettier --write \"**/*.{ts,js,sol}\""
  14. },
  15. "files": [
  16. "dist/src/",
  17. "src/",
  18. "LICENSE",
  19. "README.md"
  20. ],
  21. "author": "Kristjan Kosic <kristjan@protokol.com>",
  22. "license": "MIT",
  23. "devDependencies": {
  24. "@nomiclabs/hardhat-ethers": "^2.0.5",
  25. "@nomiclabs/hardhat-etherscan": "3.0.3",
  26. "@nomiclabs/hardhat-solhint": "^2.0.0",
  27. "@nomiclabs/hardhat-web3": "^2.0.0",
  28. "@openzeppelin/contracts": "^4.5.0",
  29. "@pinata/sdk": "^1.1.24",
  30. "@typechain/ethers-v5": "^8.0.5",
  31. "@typechain/hardhat": "^3.1.0",
  32. "@types/chai": "^4.3.0",
  33. "@types/mocha": "^9.1.0",
  34. "@types/node": "^16.11.26",
  35. "babel-eslint": "^10.1.0",
  36. "chai": "^4.3.6",
  37. "chai-bignumber": "^3.0.0",
  38. "chai-bn": "^0.3.1",
  39. "chai-ethers": "^0.0.1",
  40. "dotenv": "^16.0.0",
  41. "ethers": "^5.6.2",
  42. "hardhat": "^2.9.3",
  43. "hardhat-deploy": "^0.11.4",
  44. "mocha-skip-if": "^0.0.3",
  45. "prettier": "^2.6.2",
  46. "prettier-plugin-solidity": "^1.0.0-beta.19",
  47. "solhint": "^3.3.7",
  48. "solhint-plugin-prettier": "^0.0.5",
  49. "solidity-coverage": "^0.7.20",
  50. "transform": "^1.1.2",
  51. "ts-generator": "^0.1.1",
  52. "ts-node": "^10.7.0",
  53. "tslint": "^6.1.3",
  54. "tslint-config-prettier": "^1.18.0",
  55. "tslint-plugin-prettier": "^2.3.0",
  56. "typechain": "^6.1.0",
  57. "typescript": "^4.6.3",
  58. "web3": "^1.7.3"
  59. },
  60. "mocha": {
  61. "timeout": 10000000
  62. }
  63. }