package.json 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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.2.0",
  14. "@ethersproject/abstract-signer": "^5.2.0",
  15. "@ethersproject/bignumber": "^5.2.0",
  16. "@ethersproject/bytes": "^5.2.0",
  17. "@ethersproject/contracts": "^5.2.0",
  18. "@ethersproject/providers": "^5.2.0",
  19. "@nomiclabs/hardhat-ethers": "^2.0.2",
  20. "@nomiclabs/hardhat-waffle": "^2.0.1",
  21. "@typechain/ethers-v5": "^7.0.0",
  22. "@typechain/hardhat": "^2.0.1",
  23. "@types/chai": "^4.2.18",
  24. "@types/fs-extra": "^9.0.11",
  25. "@types/mocha": "^8.2.2",
  26. "@types/node": "^15.6.1",
  27. "@typescript-eslint/eslint-plugin": "^4.25.0",
  28. "@typescript-eslint/parser": "^4.25.0",
  29. "chai": "^4.3.4",
  30. "commitizen": "^4.2.4",
  31. "cz-conventional-changelog": "^3.3.0",
  32. "dotenv": "^10.0.0",
  33. "eslint": "^7.27.0",
  34. "eslint-config-prettier": "^8.3.0",
  35. "ethereum-waffle": "^3.3.0",
  36. "ethers": "^5.2.0",
  37. "fs-extra": "^10.0.0",
  38. "hardhat": "^2.3.0",
  39. "hardhat-gas-reporter": "^1.0.4",
  40. "husky": "^6.0.0",
  41. "lint-staged": "^11.0.0",
  42. "mocha": "^8.4.0",
  43. "prettier": "^2.3.0",
  44. "prettier-plugin-solidity": "^1.0.0-beta.11",
  45. "shelljs": "^0.8.4",
  46. "solhint": "^3.3.6",
  47. "solhint-plugin-prettier": "^0.0.5",
  48. "solidity-coverage": "^0.7.16",
  49. "ts-generator": "^0.1.1",
  50. "ts-node": "^10.0.0",
  51. "typechain": "^5.0.0",
  52. "typescript": "~4.2.4"
  53. },
  54. "files": [
  55. "/contracts"
  56. ],
  57. "keywords": [
  58. "blockchain",
  59. "ethereum",
  60. "hardhat",
  61. "smart-contracts",
  62. "solidity"
  63. ],
  64. "license": "WTFPL",
  65. "private": true,
  66. "resolutions": {
  67. "@ethersproject/wallet": "^5.2.0"
  68. },
  69. "scripts": {
  70. "clean": "hardhat clean",
  71. "commit": "git-cz",
  72. "compile": "hardhat compile",
  73. "coverage": "hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"./test/**/*.ts\"",
  74. "deploy": "hardhat run scripts/deploy.ts",
  75. "deploy:network": "hardhat run scripts/deploy.ts --network",
  76. "lint": "yarn run lint:sol && yarn run lint:ts && yarn run prettier:check",
  77. "lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
  78. "lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
  79. "postinstall": "husky install",
  80. "prettier": "prettier --config ./.prettierrc --write \"**/*.{js,json,md,sol,ts}\"",
  81. "prettier:check": "prettier --check --config ./.prettierrc \"**/*.{js,json,md,sol,ts}\"",
  82. "test": "hardhat test",
  83. "typechain": "hardhat typechain"
  84. }
  85. }