package.json 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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": "Sablier",
  7. "email": "hello@sablier.finance",
  8. "url": "https://sablier.finance"
  9. },
  10. "bugs": {
  11. "url": "https://github.com/paulrberg/solidity-template/issues"
  12. },
  13. "devDependencies": {
  14. "@commitlint/cli": "^9.0.1",
  15. "@commitlint/config-conventional": "^9.0.1",
  16. "@ethersproject/abstract-signer": "^5.0.1",
  17. "@ethersproject/bignumber": "^5.0.3",
  18. "@ethersproject/wallet": "^5.0.1",
  19. "@nomiclabs/buidler": "^1.3.8",
  20. "@nomiclabs/buidler-ethers": "^2.0.0",
  21. "@nomiclabs/buidler-waffle": "^2.0.0",
  22. "@typechain/ethers-v5": "^0.0.2",
  23. "@types/chai": "^4.2.11",
  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. "husky": "^4.2.5",
  37. "mocha": "^8.0.1",
  38. "prettier": "^2.0.5",
  39. "prettier-plugin-solidity": "^1.0.0-alpha.54",
  40. "shx": "^0.3.2",
  41. "solc": "0.6.10",
  42. "solhint": "^3.0.0",
  43. "solhint-plugin-prettier": "^0.0.4",
  44. "solidity-coverage": "^0.7.9",
  45. "ts-node": "^8.10.2",
  46. "typechain": "^2.0.0",
  47. "typescript": "^3.9.6"
  48. },
  49. "files": [
  50. "/contracts"
  51. ],
  52. "homepage": "https://github.com/paulrberg/solidity-template#readme",
  53. "keywords": [
  54. "blockchain",
  55. "ethereum",
  56. "smart-contracts",
  57. "solidity"
  58. ],
  59. "license": "LGPL-3.0-or-later",
  60. "publishConfig": {
  61. "access": "public"
  62. },
  63. "repository": {
  64. "type": "git",
  65. "url": "https://github.com/paulrberg/solidity-template"
  66. },
  67. "scripts": {
  68. "build": "yarn run compile && yarn run typechain",
  69. "clean": "shx rm -rf ./artifacts ./cache ./typechain ./tsconfig.build.tsbuildinfo",
  70. "commit": "git-cz",
  71. "compile": "buidler compile",
  72. "coverage": "buidler coverage --solcoverjs ./.solcover.js --network coverage --temp artifacts --testfiles './test/**/*.ts'",
  73. "lint:sol": "solhint --config ./.solhint.json --max-warnings 0 'contracts/**/*.sol'",
  74. "lint:ts": "eslint --config ./.eslintrc.js --ignore-path ./.eslintignore --ext .js,.ts .",
  75. "prettier": "prettier --config .prettierrc --write '**/*.{js,json,md,sol,ts}'",
  76. "prettier:list-different": "prettier --config .prettierrc --list-different '**/*.{js,json,md,sol,ts}'",
  77. "test": "buidler test",
  78. "typechain": "typechain --outDir typechain --target ethers-v5 'artifacts/*.json'"
  79. }
  80. }