package.json 2.4 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": "^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.1",
  15. "@nomiclabs/hardhat-waffle": "^2.0.1",
  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.10",
  33. "hardhat-typechain": "^0.3.5",
  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. "solhint": "^3.2.1",
  40. "solhint-plugin-prettier": "^0.0.5",
  41. "solidity-coverage": "^0.7.12",
  42. "ts-generator": "^0.1.1",
  43. "ts-node": "^8.10.2",
  44. "typechain": "^4.0.1",
  45. "typescript": "^3.9.7"
  46. },
  47. "files": [
  48. "/contracts"
  49. ],
  50. "keywords": [
  51. "blockchain",
  52. "ethereum",
  53. "hardhat",
  54. "smart-contracts",
  55. "solidity"
  56. ],
  57. "license": "WTFPL",
  58. "publishConfig": {
  59. "access": "public"
  60. },
  61. "scripts": {
  62. "clean": "hardhat clean",
  63. "commit": "git-cz",
  64. "compile": "hardhat compile",
  65. "coverage": "hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"./test/**/*.ts\"",
  66. "lint": "yarn run lint:sol && yarn run lint:ts && yarn run prettier:list-different",
  67. "lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
  68. "lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
  69. "prettier": "prettier --config .prettierrc --write \"**/*.{js,json,md,sol,ts}\"",
  70. "prettier:list-different": "prettier --config .prettierrc --list-different \"**/*.{js,json,md,sol,ts}\"",
  71. "test": "hardhat test",
  72. "typechain": "hardhat typechain"
  73. },
  74. "dependencies": {
  75. "solc": "0.8.1"
  76. }
  77. }