-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.73 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.73 KB
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
{
"name": "ethernaut-solutions",
"version": "1.0.0",
"description": "Ethernaut solutions using Foundry and Hardhat.",
"directories": {
"lib": "lib",
"test": "test",
"src": "src"
},
"scripts": {
"compile": "pnpm hardhat compile",
"testhh": "pnpm hardhat test",
"node": "pnpm hardhat node",
"deploy": "pnpm hardhat deploy",
"script": "pnpm hardhat run",
"clean": "pnpm hardhat clean"
},
"author": "Chirag Patil <chirag.eth@protonmail.com>",
"license": "Apache-2.0",
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "^4.8.2",
"@openzeppelin/contracts-upgradeable": "^4.8.2",
"@openzeppelin/hardhat-upgrades": "^1.27.0",
"@openzeppelin/test-helpers": "^0.5.16",
"@typechain/ethers-v5": "^11.0.0",
"@typechain/hardhat": "7.0.0",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "20.2.5",
"chai": "^4.3.7",
"dotenv": "^16.1.3",
"ethereumjs-util": "^7.1.5",
"ethers": "5.7.2",
"hardhat": "2.14.1",
"hardhat-contract-sizer": "^2.9.0",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-preprocessor": "^0.1.5",
"node@18.14.0": "link:types/node@18.14.0",
"openzeppelin-contracts-06": "npm:@openzeppelin/contracts@3.4.2",
"openzeppelin-contracts-08": "npm:@openzeppelin/contracts@4.7.3",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.2.0",
"typescript": "5.1.3"
}
}