package.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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/buidler": "^1.4.7",
  15. "@nomiclabs/buidler-ethers": "^2.0.2",
  16. "@nomiclabs/buidler-waffle": "^2.1.0",
  17. "@typechain/ethers-v5": "^1.0.0",
  18. "@types/chai": "^4.2.13",
  19. "@types/fs-extra": "^9.0.1",
  20. "@types/mocha": "^7.0.2",
  21. "@types/node": "^14.11.8",
  22. "@typescript-eslint/eslint-plugin": "^3.10.1",
  23. "@typescript-eslint/parser": "^3.10.1",
  24. "chai": "^4.2.0",
  25. "commitizen": "^4.2.1",
  26. "cz-conventional-changelog": "^3.3.0",
  27. "dotenv": "^8.2.0",
  28. "eslint": "^7.11.0",
  29. "eslint-config-prettier": "^6.12.0",
  30. "ethereum-waffle": "^3.1.1",
  31. "ethers": "^5.0.17",
  32. "fs-extra": "^9.0.1",
  33. "husky": "^4.3.0",
  34. "mocha": "^8.1.3",
  35. "prettier": "^2.1.2",
  36. "prettier-plugin-solidity": "^1.0.0-alpha.59",
  37. "shelljs": "^0.8.4",
  38. "solc": "0.7.4",
  39. "solhint": "^3.2.1",
  40. "solhint-plugin-prettier": "^0.0.5",
  41. "solidity-coverage": "^0.7.11",
  42. "ts-generator": "^0.0.8",
  43. "ts-node": "^8.10.2",
  44. "typechain": "^2.0.1",
  45. "typescript": "^3.9.7"
  46. },
  47. "files": [
  48. "/contracts"
  49. ],
  50. "keywords": [
  51. "blockchain",
  52. "ethereum",
  53. "smart-contracts",
  54. "solidity"
  55. ],
  56. "license": "WTFPL",
  57. "publishConfig": {
  58. "access": "public"
  59. },
  60. "scripts": {
  61. "clean": "buidler clean",
  62. "commit": "git-cz",
  63. "compile": "buidler compile",
  64. "coverage": "buidler coverage --solcoverjs ./.solcover.js --network coverage --temp artifacts --testfiles \"./test/**/*.ts\"",
  65. "lint": "yarn lint lint:sol && yarn run lint:ts && yarn run prettier:list-different",
  66. "lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
  67. "lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
  68. "prettier": "prettier --config .prettierrc --write \"**/*.{js,json,md,sol,ts}\"",
  69. "prettier:list-different": "prettier --config .prettierrc --list-different \"**/*.{js,json,md,sol,ts}\"",
  70. "test": "buidler test",
  71. "typechain": "buidler typechain"
  72. }
  73. }