-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 965 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 965 Bytes
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
{
"author": "Drake Evans (x.com/drakeevansv1)",
"name": "@agora-finance/stable-swap",
"version": "0.0.1",
"description": "Contracts for Agora stable-swaps",
"scripts": {
"test": "",
"prepare": "husky install",
"format": "forge fmt src && prettier --config ./.prettierrc.json --write src",
"generate:constants": "ts-node -T scripts/generateConstants.ts"
},
"license": "Apache-2.0",
"dependencies": {
"@openzeppelin/contracts": "^5.0.1",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"agora-contracts": "github:agora-finance/contracts",
"decimal.js": "^10.5.0",
"ds-test": "github:dapphub/ds-test",
"forge-std": "github:foundry-rs/forge-std",
"viem": "^2.22.19"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "^3.3.2",
"solhint-community": "^3.7.0",
"solhint-plugin-prettier": "^0.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}