package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "typescript-eth-solidity-hardhat-template",
  3. "version": "1.0.0",
  4. "description": "",
  5. "scripts": {
  6. "test": "hardhat test",
  7. "lint:fix": "prettier --write 'scripts/**/*.{js,ts}' 'test/**/*.{js,ts}' 'tasks/**/*.{js,ts}' && tslint --fix --config tslint.json --project tsconfig.json && solhint contracts/**/*.sol",
  8. "lint": "tslint --config tslint.json --project tsconfig.json && solhint contracts/**/*.sol",
  9. "format": "prettier --check \"**/*.{ts,js,sol}\"",
  10. "format:fix": "prettier --write \"**/*.{ts,js,sol}\""
  11. },
  12. "files": [
  13. "dist/src/",
  14. "src/",
  15. "LICENSE",
  16. "README.md"
  17. ],
  18. "author": "Kristjan Kosic <kristjan@protokol.com>",
  19. "license": "MIT",
  20. "devDependencies": {
  21. "@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@0.3.0-beta.10",
  22. "@nomiclabs/hardhat-etherscan": "2.1.4",
  23. "@nomiclabs/hardhat-solhint": "2.0.0",
  24. "@nomiclabs/hardhat-web3": "2.0.0",
  25. "@openzeppelin/contracts": "4.2.0",
  26. "@pinata/sdk": "1.1.23",
  27. "@typechain/ethers-v5": "7.0.1",
  28. "@typechain/hardhat": "2.3.0",
  29. "@types/chai": "4.2.21",
  30. "@types/mocha": "9.0.0",
  31. "@types/node": "16.4.10",
  32. "babel-eslint": "^10.1.0",
  33. "chai": "4.3.4",
  34. "chai-bignumber": "3.0.0",
  35. "chai-bn": "0.3.0",
  36. "chai-ethers": "0.0.1",
  37. "dotenv": "10.0.0",
  38. "ethers": "5.4.3",
  39. "hardhat": "2.5.0",
  40. "hardhat-deploy": "0.8.11",
  41. "mocha-skip-if": "0.0.3",
  42. "prettier": "2.3.2",
  43. "prettier-plugin-solidity": "1.0.0-beta.17",
  44. "solhint": "3.3.6",
  45. "solhint-plugin-prettier": "0.0.5",
  46. "solidity-coverage": "0.7.16",
  47. "transform": "1.1.2",
  48. "ts-generator": "0.1.1",
  49. "ts-node": "10.1.0",
  50. "tslint": "5.20.1",
  51. "tslint-config-prettier": "1.18.0",
  52. "tslint-plugin-prettier": "2.3.0",
  53. "typechain": "5.1.2",
  54. "typescript": "4.3.5",
  55. "web3": "1.5.0"
  56. },
  57. "mocha": {
  58. "timeout": 10000000
  59. }
  60. }