package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "@paulrberg/solidity-template",
  3. "description": "Setup for writing Solidity smart contracts",
  4. "version": "1.0.0",
  5. "author": {
  6. "name": "Paul Razvan Berg",
  7. "url": "https://paulrberg.com"
  8. },
  9. "devDependencies": {
  10. "@codechecks/client": "^0.1.10",
  11. "@commitlint/cli": "^12.1.4",
  12. "@commitlint/config-conventional": "^12.1.4",
  13. "@ethersproject/abi": "^5.1.2",
  14. "@ethersproject/abstract-signer": "^5.1.0",
  15. "@ethersproject/bignumber": "^5.1.1",
  16. "@ethersproject/bytes": "^5.1.0",
  17. "@ethersproject/providers": "^5.1.2",
  18. "@nomiclabs/hardhat-ethers": "^2.0.2",
  19. "@nomiclabs/hardhat-waffle": "^2.0.1",
  20. "@typechain/ethers-v5": "^7.0.0",
  21. "@typechain/hardhat": "^2.0.1",
  22. "@types/chai": "^4.2.18",
  23. "@types/fs-extra": "^9.0.11",
  24. "@types/mocha": "^8.2.2",
  25. "@types/node": "^15.3.0",
  26. "@typescript-eslint/eslint-plugin": "^4.23.0",
  27. "@typescript-eslint/parser": "^4.23.0",
  28. "chai": "^4.3.4",
  29. "commitizen": "^4.2.4",
  30. "cz-conventional-changelog": "^3.3.0",
  31. "dotenv": "^9.0.2",
  32. "eslint": "^7.26.0",
  33. "eslint-config-prettier": "^8.3.0",
  34. "ethereum-waffle": "^3.3.0",
  35. "ethers": "^5.1.4",
  36. "fs-extra": "^10.0.0",
  37. "hardhat": "^2.3.0",
  38. "hardhat-gas-reporter": "^1.0.4",
  39. "husky": "^6.0.0",
  40. "mocha": "^8.4.0",
  41. "prettier": "^2.3.0",
  42. "prettier-plugin-solidity": "^1.0.0-beta.10",
  43. "shelljs": "^0.8.4",
  44. "solhint": "^3.3.4",
  45. "solhint-plugin-prettier": "^0.0.5",
  46. "solidity-coverage": "^0.7.16",
  47. "ts-generator": "^0.1.1",
  48. "ts-node": "^9.1.1",
  49. "typechain": "^5.0.0",
  50. "typescript": "^4.2.4"
  51. },
  52. "files": [
  53. "/contracts"
  54. ],
  55. "keywords": [
  56. "blockchain",
  57. "ethereum",
  58. "hardhat",
  59. "smart-contracts",
  60. "solidity"
  61. ],
  62. "license": "WTFPL",
  63. "publishConfig": {
  64. "access": "public"
  65. },
  66. "scripts": {
  67. "clean": "hardhat clean",
  68. "commit": "git-cz",
  69. "compile": "hardhat compile",
  70. "coverage": "hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"./test/**/*.ts\"",
  71. "deploy": "hardhat run scripts/deploy.ts",
  72. "deploy:network": "hardhat run scripts/deploy.ts --network",
  73. "lint": "yarn run lint:sol && yarn run lint:ts && yarn run prettier:list-different",
  74. "lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
  75. "lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
  76. "prettier": "prettier --config .prettierrc --write \"**/*.{js,json,md,sol,ts}\"",
  77. "prettier:list-different": "prettier --config .prettierrc --list-different \"**/*.{js,json,md,sol,ts}\"",
  78. "test": "hardhat test",
  79. "typechain": "hardhat typechain"
  80. }
  81. }