-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 KB
/
package.json
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
35
36
37
38
39
{
"name": "crypto-splitter",
"description": "Send multiple payments in one transaction",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "https://github.com/bmino/crypto-splitter.git"
},
"author": {
"name": "Brandon Mino"
},
"engines": {
"node": "14.16.1",
"npm": "7.15.0"
},
"scripts": {
"approve": "node ./src/Approve.js",
"pay": "node ./src/Pay.js",
"distribute": "node ./src/Distribute.js",
"test": "npx hardhat test",
"deployFuji": "npx hardhat run scripts/splitter-deploy.js --network fuji",
"deployMain": "npx hardhat run scripts/splitter-deploy.js --network mainnet"
},
"dependencies": {
"@eth-optimism/smock": "^1.1.4",
"@gnosis.pm/safe-core-sdk": "^2.0.0",
"@gnosis.pm/safe-core-sdk-types": "^1.0.0",
"@gnosis.pm/safe-service-client": "^1.1.1",
"@gnosis.pm/safe-web3-lib": "^1.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.2.0",
"axios": "^0.26.1",
"chai": "^4.3.4",
"csv-parser": "^3.0.0",
"dotenv": "^10.0.0",
"hardhat": "^2.5.0",
"web3": "^1.7.0"
}
}