-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.63 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "Sherlock-CTF",
"version": "1.0.0",
"main": "index.js",
"repository": "s",
"author": "Thro77le",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.4.1",
"@openzeppelin/contracts4.0": "npm:@openzeppelin/[email protected]",
"@openzeppelin/contracts-upgradeable-4.3.1": "npm:@openzeppelin/[email protected]",
"@openzeppelin/contracts-4.3.1": "npm:@openzeppelin/[email protected]",
"@openzeppelin/contracts-upgradeable": "^4.5.1",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^3.0.0",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.11",
"chai": "^4.3.4",
"dotenv": "^14.3.2",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.2",
"hardhat": "^2.7.0",
"hardhat-log-remover": "^2.0.2",
"ts-node": "^10.4.0",
"typechain": "^6.0.5",
"typescript": "^4.5.2"
},
"scripts": {
"score": "hh run scripts/compute_score.ts --network sherlock",
"collision-exchange": "hh test test/CollisionExchange.test.ts",
"flora-token": "hh test test/FloraToken.test.ts",
"inflation": "hh test test/Inflation.test.ts",
"become-master": "hh test test/BecomeMaster.test.ts",
"padlock": "hh test test/Padlock.test.ts",
"pixel-pavel": "hh test test/PixelPavel.test.ts",
"bit-mania": "hh test test/BitMania.test.ts",
"lollercoaster": "hh test test/Lollercoaster.test.ts",
"private": "hh test test/Private.test.ts",
"dead": "hh test test/Dead.test.ts",
"slogan": "hh test test/Slogan.test.ts",
"reentrancy": "hh test test/Reentrancy.test.ts",
"puzzle": "hh test test/Puzzle.test.ts",
"king-vault": "hh test test/KingVault.test.ts",
"crowd-funding": "hh test test/CrowdFunding.test.ts",
"collect-reward": "hh test test/CollectReward.test.ts",
"fundraising": "hh test test/Fundraising.test.ts",
"counterfactual": "hh test test/Counterfactual.test.ts",
"swiss-treasury": "hh test test/SwissTreasury.test.ts",
"funny": "hh test test/Funny.test.ts",
"park": "hh test test/Park.test.ts",
"monopoly": "hh test test/Monopoly.test.ts",
"governance": "hh test test/Governance.test.ts -- network goerli_fork",
"noob": "hh test test/Noob.test.ts",
"casino": "hh test test/Casino.test.ts",
"stable-swap": "hh test test/StableSwap.test.ts",
"combination": "hh test test/Combination.test.ts",
"unbreakable": "hh test test/Unbreakable.test.ts",
"sheerlock": "hh test test/Sheerlock.test.ts"
},
"files": [
"/contracts"
]
}