generated from FraxFinance/frax-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.22 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 2.22 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
{
"name": "frax-tokens",
"version": "1.0.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{$ENTER_SCRIPT_FILE_HERE} --rpc-url $POLYGON_RPC_URL -vvvv --broadcast --verify --slow"
},
"author": "Frax Finance",
"license": "ISC",
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "^3.6.2",
"prettier-plugin-solidity": "^1.4.3",
"prettier-plugin-svelte": "^3.4.0",
"solhint": "^3.6.2",
"solhint-plugin-prettier": "^0.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@openzeppelin/contracts-5.3.0": "npm:@openzeppelin/contracts@5.3.0",
"@prb/math": "^4.1.0",
"ds-test": "github:dapphub/ds-test",
"forge-std": "github:foundry-rs/forge-std#60acb7aaadcce2d68e52986a0a66fe79f07d138f",
"frax-standard-solidity": "github:FraxFinance/frax-standard-solidity#v1.1.4",
"solidity-bytes-utils": "github:GNSPS/solidity-bytes-utils",
"solmate": "github:transmissions11/solmate#fadb2e2778adbf01c80275bfb99e5c14969d964b",
"@fraxfinance/layerzero-v2-upgradeable": "github:fraxfinance/LayerZero-v2-upgradeable#deps/pin-oz",
"@openzeppelin/contracts-4.8.1": "npm:@openzeppelin/contracts@4.8.1",
"@openzeppelin/contracts-upgradeable-4.8.1": "npm:@openzeppelin/contracts-upgradeable@4.8.1",
"@layerzerolabs/lz-evm-protocol-v2": "^3.0.107",
"@openzeppelin/contracts": "npm:@openzeppelin/contracts@5.3.0",
"@openzeppelin/contracts-5.2.0": "npm:@openzeppelin/contracts@5.2.0",
"@openzeppelin/contracts-upgradeable-5.2.0": "npm:@openzeppelin/contracts-upgradeable@5.2.0"
}
}