package.json 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. "@ethersproject/wallet": "^5.0.1",
  18. "@nomiclabs/buidler": "^1.3.8",
  19. "@nomiclabs/buidler-ethers": "^2.0.0",
  20. "@nomiclabs/buidler-waffle": "^2.0.0",
  21. "@typechain/ethers-v5": "^0.0.2",
  22. "@types/chai": "^4.2.11",
  23. "@types/fs-extra": "^9.0.1",
  24. "@types/mocha": "^7.0.2",
  25. "@types/node": "^14.0.14",
  26. "@typescript-eslint/eslint-plugin": "^3.6.0",
  27. "@typescript-eslint/parser": "^3.6.0",
  28. "chai": "^4.2.0",
  29. "commitizen": "^4.1.2",
  30. "cz-conventional-changelog": "^3.2.0",
  31. "dotenv": "^8.2.0",
  32. "eslint": "^7.4.0",
  33. "eslint-config-prettier": "^6.11.0",
  34. "ethereum-waffle": "^3.0.1",
  35. "ethers": "^5.0.4",
  36. "fs-extra": "^9.0.1",
  37. "husky": "^4.2.5",
  38. "mocha": "^8.0.1",
  39. "prettier": "^2.0.5",
  40. "prettier-plugin-solidity": "^1.0.0-alpha.54",
  41. "shelljs": "^0.8.4",
  42. "shx": "^0.3.2",
  43. "solc": "0.6.10",
  44. "solhint": "^3.0.0",
  45. "solhint-plugin-prettier": "^0.0.4",
  46. "solidity-coverage": "^0.7.9",
  47. "ts-generator": "^0.0.8",
  48. "ts-node": "^8.10.2",
  49. "typechain": "^2.0.0",
  50. "typescript": "^3.9.6"
  51. },
  52. "files": [
  53. "/contracts"
  54. ],
  55. "homepage": "https://github.com/paulrberg/solidity-template#readme",
  56. "keywords": [
  57. "blockchain",
  58. "ethereum",
  59. "smart-contracts",
  60. "solidity"
  61. ],
  62. "license": "LGPL-3.0-or-later",
  63. "publishConfig": {
  64. "access": "public"
  65. },
  66. "repository": {
  67. "type": "git",
  68. "url": "https://github.com/paulrberg/solidity-template"
  69. },
  70. "scripts": {
  71. "build": "yarn run compile && yarn run typechain",
  72. "clean": "buidler clean",
  73. "commit": "git-cz",
  74. "compile": "buidler compile",
  75. "coverage": "buidler coverage --solcoverjs ./.solcover.js --network coverage --temp artifacts --testfiles \"./test/**/*.ts\"",
  76. "lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
  77. "lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
  78. "prettier": "prettier --config .prettierrc --write \"**/*.{js,json,md,sol,ts}\"",
  79. "prettier:list-different": "prettier --config .prettierrc --list-different \"**/*.{js,json,md,sol,ts}\"",
  80. "test": "buidler test",
  81. "typechain": "buidler typechain"
  82. }
  83. }