package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "typescript-eth-solidity-hardhat-template",
  3. "version": "1.0.0",
  4. "description": "",
  5. "scripts": {
  6. "test": "hardhat test",
  7. "test-integration": "hardhat test test/integration/APIConsumer_int_test.js --network kovan; hardhat test test/integration/RandomNumberConsumer_int_test.js --network kovan",
  8. "lint:fix": "prettier --write 'scripts/**/*.{js,ts}' 'test/**/*.{js,ts}' 'tasks/**/*.{js,ts}' && tslint --fix --config tslint.json --project tsconfig.json && solhint contracts/**/*.sol",
  9. "lint": "tslint --config tslint.json --project tsconfig.json && solhint contracts/**/*.sol",
  10. "format": "prettier --check \"**/*.{ts,js,sol}\"",
  11. "format:fix": "prettier --write \"**/*.{ts,js,sol}\"",
  12. "build": "tsc",
  13. "watch": "tsc -w"
  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.10",
  25. "@nomiclabs/hardhat-etherscan": "^2.1.4",
  26. "@nomiclabs/hardhat-solhint": "^2.0.0",
  27. "@nomiclabs/hardhat-web3": "^2.0.0",
  28. "@openzeppelin/contracts": "^4.2.0",
  29. "@pinata/sdk": "^1.1.23",
  30. "@typechain/ethers-v5": "^7.0.1",
  31. "@typechain/hardhat": "^2.2.0",
  32. "@types/chai": "^4.2.21",
  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.3",
  42. "hardhat": "^2.5.0",
  43. "hardhat-deploy": "^0.8.11",
  44. "mocha-skip-if": "^0.0.3",
  45. "prettier": "^2.3.2",
  46. "prettier-plugin-solidity": "^1.0.0-beta.17",
  47. "solhint": "^3.3.6",
  48. "solhint-plugin-prettier": "^0.0.5",
  49. "solidity-coverage": "^0.7.16",
  50. "transform": "^1.1.2",
  51. "ts-generator": "^0.1.1",
  52. "ts-node": "^10.1.0",
  53. "tslint": "^5.20.1",
  54. "tslint-config-prettier": "^1.18.0",
  55. "tslint-plugin-prettier": "^2.3.0",
  56. "typechain": "^5.1.2",
  57. "typescript": "^4.3.5",
  58. "web3": "^1.5.0"
  59. },
  60. "mocha": {
  61. "timeout": 10000000
  62. }
  63. }