package.json 2.6 KB

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