package.json 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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/contracts": "^5.2.0",
  18. "@ethersproject/providers": "^5.1.2",
  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.3.0",
  27. "@typescript-eslint/eslint-plugin": "^4.23.0",
  28. "@typescript-eslint/parser": "^4.23.0",
  29. "chai": "^4.3.4",
  30. "commitizen": "^4.2.4",
  31. "cz-conventional-changelog": "^3.3.0",
  32. "dotenv": "^9.0.2",
  33. "eslint": "^7.26.0",
  34. "eslint-config-prettier": "^8.3.0",
  35. "ethereum-waffle": "^3.3.0",
  36. "ethers": "^5.1.4",
  37. "fs-extra": "^10.0.0",
  38. "hardhat": "^2.3.0",
  39. "hardhat-gas-reporter": "^1.0.4",
  40. "husky": "^6.0.0",
  41. "mocha": "^8.4.0",
  42. "prettier": "^2.3.0",
  43. "prettier-plugin-solidity": "^1.0.0-beta.10",
  44. "shelljs": "^0.8.4",
  45. "solhint": "^3.3.4",
  46. "solhint-plugin-prettier": "^0.0.5",
  47. "solidity-coverage": "^0.7.16",
  48. "ts-generator": "^0.1.1",
  49. "ts-node": "^9.1.1",
  50. "typechain": "^5.0.0",
  51. "typescript": "^4.2.4"
  52. },
  53. "files": [
  54. "/contracts"
  55. ],
  56. "keywords": [
  57. "blockchain",
  58. "ethereum",
  59. "hardhat",
  60. "smart-contracts",
  61. "solidity"
  62. ],
  63. "license": "WTFPL",
  64. "publishConfig": {
  65. "access": "public"
  66. },
  67. "scripts": {
  68. "clean": "hardhat clean",
  69. "commit": "git-cz",
  70. "compile": "hardhat compile",
  71. "coverage": "hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"./test/**/*.ts\"",
  72. "deploy": "hardhat run scripts/deploy.ts",
  73. "deploy:network": "hardhat run scripts/deploy.ts --network",
  74. "lint": "yarn run lint:sol && yarn run lint:ts && yarn run prettier:check",
  75. "lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
  76. "lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
  77. "prettier": "prettier --config .prettierrc --write \"**/*.{js,json,md,sol,ts}\"",
  78. "prettier:check": "prettier --check --config .prettierrc \"**/*.{js,json,md,sol,ts}\"",
  79. "test": "hardhat test",
  80. "typechain": "hardhat typechain"
  81. }
  82. }