package.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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-web3": "^2.0.0",
  27. "@openzeppelin/contracts": "^4.2.0",
  28. "@pinata/sdk": "^1.1.23",
  29. "@typechain/ethers-v5": "^7.0.1",
  30. "@typechain/hardhat": "^2.2.0",
  31. "@types/chai": "^4.2.21",
  32. "@types/mocha": "^9.0.0",
  33. "@types/node": "^16.4.10",
  34. "babel-eslint": "^10.1.0",
  35. "chai": "^4.3.4",
  36. "chai-bignumber": "^3.0.0",
  37. "chai-ethers": "^0.0.1",
  38. "chai-bn": "^0.3.0",
  39. "dotenv": "^10.0.0",
  40. "ethers": "^5.4.3",
  41. "hardhat": "^2.5.0",
  42. "hardhat-deploy": "^0.8.11",
  43. "mocha-skip-if": "^0.0.3",
  44. "prettier": "^2.3.2",
  45. "prettier-plugin-solidity": "^1.0.0-beta.17",
  46. "solhint": "^3.3.6",
  47. "solhint-plugin-prettier": "^0.0.5",
  48. "transform": "^1.1.2",
  49. "ts-generator": "^0.1.1",
  50. "ts-node": "^10.1.0",
  51. "tslint": "^5.20.1",
  52. "tslint-config-prettier": "^1.18.0",
  53. "tslint-plugin-prettier": "^2.3.0",
  54. "typechain": "^5.1.2",
  55. "typescript": "^4.3.5",
  56. "web3": "^1.5.0"
  57. },
  58. "mocha": {
  59. "timeout": 10000000
  60. }
  61. }