-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "erc20-payment-splitter",
"version": "1.0.0",
"description": "Auto Payment Splitter DApp for ERC20 tokens",
"main": "index.js",
"scripts": {
"test": "hardhat test",
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy.js",
"add-payees": "hardhat run scripts/add-payees.js",
"distribute": "hardhat run scripts/distribute-tokens.js",
"node": "hardhat node",
"deploy:local": "hardhat run scripts/deploy.js --network localhost",
"deploy:testnet": "hardhat run scripts/deploy.js --network sepolia"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"chai": "^4.3.7",
"ethers": "^6.8.0",
"hardhat": "^2.19.0",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.5",
"typechain": "^8.3.0"
}
}