package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. "@commitlint/cli": "^9.1.2",
  11. "@commitlint/config-conventional": "^9.1.2",
  12. "@ethersproject/abstract-signer": "^5.0.6",
  13. "@ethersproject/bignumber": "^5.0.8",
  14. "@nomiclabs/hardhat-ethers": "^2.0.0",
  15. "@nomiclabs/hardhat-waffle": "^2.0.0",
  16. "@typechain/ethers-v5": "^5.0.0",
  17. "@types/chai": "^4.2.13",
  18. "@types/fs-extra": "^9.0.1",
  19. "@types/mocha": "^7.0.2",
  20. "@types/node": "^14.11.8",
  21. "@typescript-eslint/eslint-plugin": "^3.10.1",
  22. "@typescript-eslint/parser": "^3.10.1",
  23. "chai": "^4.2.0",
  24. "commitizen": "^4.2.1",
  25. "cz-conventional-changelog": "^3.3.0",
  26. "dotenv": "^8.2.0",
  27. "eslint": "^7.11.0",
  28. "eslint-config-prettier": "^6.12.0",
  29. "ethereum-waffle": "^3.2.0",
  30. "ethers": "^5.0.24",
  31. "fs-extra": "^9.0.1",
  32. "hardhat": "^2.0.2",
  33. "hardhat-typechain": "^0.3.3",
  34. "husky": "^4.3.0",
  35. "mocha": "^8.1.3",
  36. "prettier": "^2.1.2",
  37. "prettier-plugin-solidity": "^1.0.0-beta.1",
  38. "shelljs": "^0.8.4",
  39. "solc": "0.7.4",
  40. "solhint": "^3.2.1",
  41. "solhint-plugin-prettier": "^0.0.5",
  42. "solidity-coverage": "^0.7.12",
  43. "ts-generator": "^0.1.1",
  44. "ts-node": "^8.10.2",
  45. "typechain": "^4.0.1",
  46. "typescript": "^3.9.7"
  47. },
  48. "files": [
  49. "/contracts"
  50. ],
  51. "keywords": [
  52. "blockchain",
  53. "ethereum",
  54. "hardhat",
  55. "smart-contracts",
  56. "solidity"
  57. ],
  58. "license": "WTFPL",
  59. "publishConfig": {
  60. "access": "public"
  61. },
  62. "scripts": {
  63. "clean": "hardhat clean",
  64. "commit": "git-cz",
  65. "compile": "hardhat compile",
  66. "coverage": "hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"./test/**/*.ts\"",
  67. "lint": "yarn run lint:sol && yarn run lint:ts && yarn run prettier:list-different",
  68. "lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
  69. "lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
  70. "prettier": "prettier --config .prettierrc --write \"**/*.{js,json,md,sol,ts}\"",
  71. "prettier:list-different": "prettier --config .prettierrc --list-different \"**/*.{js,json,md,sol,ts}\"",
  72. "test": "hardhat test",
  73. "typechain": "hardhat typechain"
  74. }
  75. }