package.json 2.2 KB

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