-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.37 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": "migrate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_NO_WARNINGS=1 hardhat test",
"coverage": "NODE_NO_WARNINGS=1 hardhat coverage",
"compile": "NODE_NO_WARNINGS=1 hardhat compile",
"size": "npm run clean && NODE_NO_WARNINGS=1 hardhat size-contracts",
"scan:myth": "myth analyze ./contracts/Migrate.sol --execution-timeout 90",
"prescan:myth": "npm run compile",
"scan:slither": "NODE_NO_WARNINGS=1 slither .",
"prescan:slither": "npm run clean",
"clean": "rm -rf artifacts cache",
"scan": "npm run scan:myth; npm run scan:slither",
"flat": "poa-solidity-flattener $PWD/contracts/Migrate.sol",
"freeze": "cd scripts && node freeze.mjs",
"airdrop": "cd scripts && node migrate.mjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.8.2",
"@poanet/solidity-flattener": "^3.0.8",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.2",
"hardhat": "^2.12.6",
"hardhat-contract-sizer": "^2.7.0",
"solidity-coverage": "^0.8.2",
"solidity-docgen": "^0.6.0-beta.35"
},
"dependencies": {
"@ethersproject/experimental": "^5.7.0",
"cli-progress": "^3.11.2"
}
}