package.json 2.4 KB

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