30 lines
743 B
JSON
30 lines
743 B
JSON
{
|
|
"name": "dbis-system",
|
|
"version": "1.0.0",
|
|
"description": "DBIS Atomic Amortizing Leverage Engine - Complete DeFi System",
|
|
"scripts": {
|
|
"build": "forge build",
|
|
"test": "forge test",
|
|
"test:fork": "forge test --fork-url $MAINNET_RPC_URL",
|
|
"test:coverage": "forge coverage",
|
|
"deploy:testnet": "tsx scripts/testnet.ts",
|
|
"deploy:mainnet": "tsx scripts/deploy.ts",
|
|
"simulate": "tsx scripts/simulate.ts",
|
|
"bot": "tsx mev-bot/src/bot.ts"
|
|
},
|
|
"dependencies": {
|
|
"@openzeppelin/contracts": "^5.0.0",
|
|
"ethers": "^6.9.0",
|
|
"dotenv": "^16.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.0",
|
|
"tsx": "^4.7.0",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|
|
|