-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.88 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
{
"name": "dev-frax-bamm",
"version": "0.1.0",
"description": "",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"lint:check": "prettier --check '**/*.(sol)' --ignore-path=.gitignore",
"lint:fix-all": "prettier --write '**/*.(sol)' --ignore-path=.gitignore",
"test": "forge test",
"prepare": "husky install",
"format": "forge fmt src && prettier --config ./.prettierrc.json --write src && forge fmt test && prettier --config ./.prettierrc.json --write test",
"generate:constants": "ts-node -T scripts/generateConstants.ts",
"deploy:mainnet": "forge script src/script{$ENTER_SCRIPT_FILE_HERE} --rpc-url $MAINNET_RPC_URL -vvvv --broadcast --verify --slow",
"deploy:polygon": "forge script src/script/polygon/DeployBAMMProtocolPolygon.s.sol --rpc-url $POLYGON_RPC_URL -vvvv --broadcast --verify --slow"
},
"author": "Frax Finance",
"license": "ISC",
"devDependencies": {
"@openzeppelin/contracts": "5.0.2",
"husky": "8.0.3",
"lint-staged": "13.3.0",
"prettier": "3.2.5",
"prettier-plugin-solidity": "1.3.1",
"prettier-plugin-svelte": "3.2.2",
"solhint": "3.6.2",
"solhint-plugin-prettier": "0.1.0",
"ts-node": "10.9.2",
"typescript": "5.4.3"
},
"dependencies": {
"@babel/core": "7.24.3",
"@uniswap/v2-core": "1.0.1",
"@uniswap/v2-periphery": "1.1.0-beta.0",
"@uniswap/v3-core": "1.0.1",
"@uniswap/v3-periphery": "1.4.4",
"bignumber.js": "9.1.2",
"dev-fraxswap": "github:FraxFinance/dev-fraxswap",
"ds-test": "github:dapphub/ds-test",
"ethers": "5.7.2",
"forge-std": "github:foundry-rs/forge-std#e8a047e3f40f13fa37af6fe14e6e06283d9a060e",
"frax-standard-solidity": "github:FraxFinance/frax-standard-solidity",
"solidity-bytes-utils": "github:GNSPS/solidity-bytes-utils",
"solmate": "github:transmissions11/solmate#a9e3ea26a2dc73bfa87f0cb189687d029028e0c5"
}
}