-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.25 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
{
"name": "replaying-ethereum-hacks",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier --write ./test",
"templedao": "npx hardhat test test/templedao_attack/templedao_attack.test.ts",
"nereus": "npx hardhat test test/nereusfinance_attack/nereusfinance_attack.test.ts",
"sportsdao": "npx hardhat test test/sportsdao_attack/sportsdao_attack.test.ts",
"testcontract": "npx hardhat test test/testcontract/testcontract.test.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/chai": "^4.2.14",
"@types/lodash": "^4.14.167",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.14",
"@types/request": "^2.48.8",
"chai": "^4.2.0",
"ethereum-waffle": "^3.2.1",
"ethers": "^5.0.24",
"hardhat": "^2.0.8",
"prettier": "2.7.1",
"request": "^2.88.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.0",
"@tenderly/hardhat-tenderly": "^1.0.6",
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"lodash": "^4.17.20"
}
}