-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.39 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "erc20-flash-lender",
"version": "0.0.1",
"description": "Personal flash loan protocol for ERC20 tokens. Educational/development use only - requires professional audit before mainnet deployment",
"keywords": [
"flash-loan",
"defi",
"erc20",
"mev",
"arbitrage",
"liquidation"
],
"license": "GPL-3.0-or-later",
"author": "AugustoL",
"repository": {
"type": "git",
"url": "https://github.com/your-username/erc20-flash-lender.git"
},
"type": "commonjs",
"main": "index.js",
"scripts": {
"dev": "sh scripts/dev-all.sh",
"dev:app": "sh scripts/dev-app.sh",
"dev:node": "sh scripts/dev-node.sh",
"build": "hardhat compile",
"test": "hardhat test",
"test:coverage": "hardhat coverage",
"test:gas": "REPORT_GAS=true hardhat test",
"deploy:localhost": "hardhat run scripts/deploy.ts --network localhost",
"deploy:dev": "hardhat run scripts/deploy-dev.ts --network localhost",
"deploy:sepolia": "hardhat run scripts/deploy.ts --network sepolia",
"deploy:mainnet": "hardhat run scripts/deploy.ts --network mainnet",
"verify:sepolia": "hardhat verify --network sepolia",
"verify:mainnet": "hardhat verify --network mainnet",
"node": "hardhat node",
"clean": "hardhat clean",
"typechain": "hardhat typechain",
"size": "hardhat size-contracts",
"lint": "npx prettier --write 'contracts/**/*.sol' && npx solhint 'contracts/**/*.sol'",
"format": "npx prettier --write '**/*.{ts,js,json,md}'"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.1.0",
"@nomicfoundation/hardhat-ethers": "^3.1.0",
"@nomicfoundation/hardhat-network-helpers": "^1.1.0",
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"ethers": "^6.15.0",
"hardhat": "^2.26.2",
"hardhat-contract-sizer": "^2.10.0",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^4.0.0",
"solidity-coverage": "^0.8.5",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@openzeppelin/contracts": "^5.4.0",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=11.0.0"
}
}