-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
40
41
42
{
"name": "airdrop-contract",
"version": "0.1.0",
"description": "A smart contract for efficiently conducting bulk transfers of MARK tokens on the Arbitrum One network.",
"scripts": {
"test": "truffle test",
"compile": "truffle compile",
"migrate": "truffle migrate",
"migrate:dashboard": "truffle migrate --network dashboard",
"truffle:dashboard": "truffle dashboard",
"truffle:verify": "truffle run verify Airdrop --network arbitrum --verifiers=etherscan"
},
"repository": {
"type": "git",
"url": "https://github.com/MchainNetwork/airdrop-contract.git"
},
"keywords": [
"mchain",
"mark",
"erc20",
"smart contract",
"ethereum",
"solidity",
"airdrop",
"arbitrum"
],
"author": "Mchain Network",
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/test-helpers": "^0.5.16",
"chai": "^4.3.8",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"open": "^9.1.0",
"papaparse": "^5.4.1",
"web3": "^4.1.2"
},
"devDependencies": {
"truffle-plugin-verify": "^0.6.5"
}
}