package.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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": "^12.1.4",
  11. "@commitlint/config-conventional": "^12.1.4",
  12. "@ethersproject/abstract-signer": "^5.1.0",
  13. "@ethersproject/bignumber": "^5.1.1",
  14. "@nomiclabs/hardhat-ethers": "^2.0.2",
  15. "@nomiclabs/hardhat-waffle": "^2.0.1",
  16. "@typechain/ethers-v5": "^7.0.0",
  17. "@typechain/hardhat": "^2.0.1",
  18. "@types/chai": "^4.2.18",
  19. "@types/fs-extra": "^9.0.11",
  20. "@types/mocha": "^8.2.2",
  21. "@types/node": "^15.3.0",
  22. "@typescript-eslint/eslint-plugin": "^4.23.0",
  23. "@typescript-eslint/parser": "^4.23.0",
  24. "chai": "^4.3.4",
  25. "commitizen": "^4.2.4",
  26. "cz-conventional-changelog": "^3.3.0",
  27. "dotenv": "^9.0.2",
  28. "eslint": "^7.26.0",
  29. "eslint-config-prettier": "^8.3.0",
  30. "ethereum-waffle": "^3.3.0",
  31. "ethers": "^5.1.4",
  32. "fs-extra": "^10.0.0",
  33. "hardhat": "^2.3.0",
  34. "hardhat-gas-reporter": "^1.0.4",
  35. "husky": "^6.0.0",
  36. "mocha": "^8.4.0",
  37. "prettier": "^2.3.0",
  38. "prettier-plugin-solidity": "^1.0.0-beta.10",
  39. "shelljs": "^0.8.4",
  40. "solhint": "^3.3.4",
  41. "solhint-plugin-prettier": "^0.0.5",
  42. "solidity-coverage": "^0.7.16",
  43. "ts-generator": "^0.1.1",
  44. "ts-node": "^9.1.1",
  45. "typechain": "^5.0.0",
  46. "typescript": "^4.2.4"
  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. "deploy": "hardhat run scripts/deploy.ts",
  68. "deploy:network": "hardhat run scripts/deploy.ts --network",
  69. "lint": "yarn run lint:sol && yarn run lint:ts && yarn run prettier:list-different",
  70. "lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
  71. "lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
  72. "prettier": "prettier --config .prettierrc --write \"**/*.{js,json,md,sol,ts}\"",
  73. "prettier:list-different": "prettier --config .prettierrc --list-different \"**/*.{js,json,md,sol,ts}\"",
  74. "test": "hardhat test",
  75. "typechain": "hardhat typechain"
  76. }
  77. }