forked from theredguild/damn-vulnerable-defi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 2.91 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
{
"version": "2.2.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tinchoabbate/damn-vulnerable-defi.git"
},
"scripts": {
"unstoppable": "yarn hardhat test test/01-unstoppable/unstoppable.challenge.js",
"unstoppable:solved": "yarn hardhat test test/01-unstoppable/unstoppable.challenge.solved.js",
"naive-receiver": "yarn hardhat test test/02-naive-receiver/naive-receiver.challenge.js",
"naive-receiver:solved": "yarn hardhat test test/02-naive-receiver/naive-receiver.challenge.solved.js",
"truster": "yarn hardhat test test/03-truster/truster.challenge.js",
"truster:solved": "yarn hardhat test test/03-truster/truster.challenge.solved.js",
"side-entrance": "yarn hardhat test test/04-side-entrance/side-entrance.challenge.js",
"side-entrance:solved": "yarn hardhat test test/04-side-entrance/side-entrance.challenge.solved.js",
"the-rewarder": "yarn hardhat test test/05-the-rewarder/the-rewarder.challenge.js",
"the-rewarder:solved": "yarn hardhat test test/05-the-rewarder/the-rewarder.challenge.solved.js",
"selfie": "yarn hardhat test test/selfie/06-selfie/selfie.challenge.js",
"selfie:solved": "yarn hardhat test test/06-selfie/selfie.challenge.solved.js",
"compromised": "yarn hardhat test test/07-compromised/compromised.challenge.js",
"compromised:solved": "yarn hardhat test test/07-compromised/compromised.challenge.solved.js",
"puppet": "yarn hardhat test test/08-puppet/puppet.challenge.js",
"puppet:solved": "yarn hardhat test test/08-puppet/puppet.challenge.solved.js",
"puppet-v2": "yarn hardhat test test/09-puppet-v2/puppet-v2.challenge.js",
"puppet-v2:solved": "yarn hardhat test test/09-puppet-v2/puppet-v2.challenge.solved.js",
"free-rider": "yarn hardhat test test/10-free-rider/free-rider.challenge.js",
"free-rider:solved": "yarn hardhat test test/10-free-rider/free-rider.challenge.solved.js",
"backdoor": "yarn hardhat test test/11-backdoor/backdoor.challenge.js",
"backdoor:solved": "yarn hardhat test test/11-backdoor/backdoor.challenge.solved.js",
"climber": "yarn hardhat test test/12-climber/climber.challenge.js",
"climber:solved": "yarn hardhat test test/12-climber/climber.challenge.solved.js",
"safe-miners": "yarn hardhat test test/safe-miners/safe-miners.challenge.js",
"safe-miners:solved": "yarn hardhat test test/safe-miners/safe-miners.challenge.solved.js"
},
"devDependencies": {
"@gnosis.pm/safe-contracts": "1.3.0",
"@nomiclabs/hardhat-ethers": "2.0.2",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@openzeppelin/contracts": "4.3.2",
"@openzeppelin/contracts-upgradeable": "4.3.2",
"@openzeppelin/hardhat-upgrades": "1.10.0",
"@uniswap/v2-core": "1.0.1",
"@uniswap/v2-periphery": "1.1.0-beta.0",
"chai": "4.3.4",
"ethereum-waffle": "3.4.0",
"ethers": "5.4.7",
"hardhat": "2.6.4",
"hardhat-dependency-compiler": "1.1.1"
}
}