package.json 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "@paulrberg/solidity-template",
  3. "description": "To be used when building a new solidity project from scratch",
  4. "version": "1.0.0",
  5. "author": {
  6. "name": "Paul Razvan Berg",
  7. "url": "https://paulrberg.com"
  8. },
  9. "bugs": {
  10. "url": "https://github.com/paulrberg/solidity-template/issues"
  11. },
  12. "devDependencies": {
  13. "@commitlint/cli": "^9.0.1",
  14. "@commitlint/config-conventional": "^9.0.1",
  15. "@ethersproject/abstract-signer": "^5.0.1",
  16. "@ethersproject/bignumber": "^5.0.3",
  17. "@nomiclabs/buidler": "^1.4.4",
  18. "@nomiclabs/buidler-ethers": "^2.0.0",
  19. "@nomiclabs/buidler-waffle": "^2.0.0",
  20. "@typechain/ethers-v5": "^1.0.0",
  21. "@types/chai": "^4.2.11",
  22. "@types/fs-extra": "^9.0.1",
  23. "@types/mocha": "^7.0.2",
  24. "@types/node": "^14.0.14",
  25. "@typescript-eslint/eslint-plugin": "^3.6.0",
  26. "@typescript-eslint/parser": "^3.6.0",
  27. "chai": "^4.2.0",
  28. "commitizen": "^4.1.2",
  29. "cz-conventional-changelog": "^3.2.0",
  30. "dotenv": "^8.2.0",
  31. "eslint": "^7.4.0",
  32. "eslint-config-prettier": "^6.11.0",
  33. "ethereum-waffle": "^3.0.2",
  34. "ethers": "^5.0.4",
  35. "fs-extra": "^9.0.1",
  36. "husky": "^4.2.5",
  37. "mocha": "^8.0.1",
  38. "prettier": "^2.0.5",
  39. "prettier-plugin-solidity": "^1.0.0-alpha.54",
  40. "shelljs": "^0.8.4",
  41. "shx": "^0.3.2",
  42. "solc": "0.6.10",
  43. "solhint": "^3.0.0",
  44. "solhint-plugin-prettier": "^0.0.5",
  45. "solidity-coverage": "^0.7.9",
  46. "ts-generator": "^0.0.8",
  47. "ts-node": "^8.10.2",
  48. "typechain": "^2.0.0",
  49. "typescript": "^3.9.6"
  50. },
  51. "files": [
  52. "/contracts"
  53. ],
  54. "homepage": "https://github.com/paulrberg/solidity-template#readme",
  55. "keywords": [
  56. "blockchain",
  57. "ethereum",
  58. "smart-contracts",
  59. "solidity"
  60. ],
  61. "license": "LGPL-3.0-or-later",
  62. "publishConfig": {
  63. "access": "public"
  64. },
  65. "repository": {
  66. "type": "git",
  67. "url": "https://github.com/paulrberg/solidity-template"
  68. },
  69. "scripts": {
  70. "build": "yarn run compile && yarn run typechain",
  71. "clean": "buidler clean",
  72. "commit": "git-cz",
  73. "compile": "buidler compile",
  74. "coverage": "buidler coverage --solcoverjs ./.solcover.js --network coverage --temp artifacts --testfiles \"./test/**/*.ts\"",
  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:list-different": "prettier --config .prettierrc --list-different \"**/*.{js,json,md,sol,ts}\"",
  79. "test": "buidler test",
  80. "typechain": "buidler typechain"
  81. }
  82. }