package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "solidity-typescript-hardhat-template",
  3. "version": "1.0.0",
  4. "description": "Basic Hardhat template to get you started with Solidity and TypeScript",
  5. "scripts": {
  6. "compile": "hardhat compile",
  7. "test": "hardhat test",
  8. "coverage": "hardhat coverage",
  9. "deploy": "hardhat ignition deploy",
  10. "node": "hardhat node",
  11. "deployLaunchpad:local": "npx hardhat ignition deploy ignition/modules/LaunchpadModule.ts --network localhost --reset",
  12. "visualize": "npx hardhat ignition visualize ignition/modules/LaunchpadModule.ts",
  13. "deployLaunchpad:sep": "npx hardhat ignition deploy ignition/modules/LaunchpadModule.ts --network sepolia",
  14. "deploy:bsc-testnet": "npx hardhat run scripts/deploy-bsc-testnet.ts --network bscTestnet",
  15. "add-liquidity": "npx hardhat run scripts/pancakeswap-liquidity.ts --network bscTestnet",
  16. "swap": "tsx scripts/pancakeswap-swap.ts",
  17. "swap:musdt": "tsx scripts/pancakeswap-swap.ts mUSDT",
  18. "swap:ctrl": "tsx scripts/pancakeswap-swap.ts CTRL",
  19. "info": "npx hardhat run scripts/pancakeswap-info.ts --network bscTestnet",
  20. "balance": "npx hardhat run scripts/check-balance.ts --network bscTestnet",
  21. "sol:format:check": "prettier --check --plugin=prettier-plugin-solidity 'contracts/**/*.sol'",
  22. "sol:format:write": "prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol'",
  23. "solhint": "solhint -f table 'contracts/**/*.sol'",
  24. "format:check": "prettier --check .",
  25. "format:write": "prettier --write .",
  26. "lint:check": "eslint .",
  27. "lint:fix": "eslint --fix ."
  28. },
  29. "license": "MIT",
  30. "dependencies": {
  31. "@openzeppelin/contracts": "^5.3.0",
  32. "@openzeppelin/merkle-tree": "^1.0.8",
  33. "chai": "^5.2.1"
  34. },
  35. "devDependencies": {
  36. "@eslint/eslintrc": "^3.3.1",
  37. "@eslint/js": "^9.30.0",
  38. "@nomicfoundation/hardhat-toolbox": "^6.0.0",
  39. "@nomiclabs/hardhat-solhint": "^4.0.2",
  40. "@openzeppelin/test-helpers": "^0.5.16",
  41. "@types/node": "^22.15.34",
  42. "@typescript-eslint/eslint-plugin": "^8.35.0",
  43. "@typescript-eslint/parser": "^8.35.0",
  44. "dotenv": "^17.0.0",
  45. "eslint": "^9.30.0",
  46. "eslint-config-prettier": "^10.1.5",
  47. "eslint-plugin-prettier": "^5.5.1",
  48. "ethers": "^6.14.4",
  49. "hardhat": "^2.25.0",
  50. "prettier": "^3.6.2",
  51. "prettier-plugin-solidity": "^2.0.0",
  52. "solhint": "^5.2.0",
  53. "solidity-coverage": "^0.8.16",
  54. "tsx": "^4.20.3",
  55. "typescript": "^5.8.3"
  56. }
  57. }