-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 901 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 901 Bytes
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
{
"name": "swap",
"version": "1.0.0",
"description": "contains the code of the Musicoin swap",
"main": "index.js",
"scripts": {
"node": "npx hardhat node",
"deploy-token": "npx hardhat run --network skale scripts/deploy-token.js",
"deploy-multicall": "npx hardhat run --network skale scripts/deploy-multicall.js",
"separate": "npx hardhat run --network skale scripts/separate-wallets.js",
"transfer": "npx hardhat run --network skale scripts/transfer-EOA-wallets.js",
"validate": "npx hardhat run --network skale scripts/validate-transfers.js"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"hardhat": "^2.11.2",
"prettier": "^3.0.3"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.3",
"dotenv": "^16.3.1",
"fastest-validator": "^1.17.0",
"mongoose": "^7.6.3"
}
}