-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
31 lines (31 loc) · 1.11 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
{
"name": "@bananapus/core",
"version": "0.0.35",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Bananapus/nana-core"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"test": "forge test",
"test:fork": "FOUNDRY_PROFILE=CI forge test",
"coverage": "forge coverage --match-path \"./src/*.sol\" --report lcov --report summary",
"deploy:mainnets": "source ./.env && npx sphinx propose ./script/Deploy.s.sol --networks mainnets",
"deploy:testnets": "source ./.env && npx sphinx propose ./script/Deploy.s.sol --networks testnets",
"deploy:testnets:periphery": "source ./.env && npx sphinx propose ./script/DeployPeriphery.s.sol --networks testnets",
"artifacts": "source ./.env && npx sphinx artifacts --org-id 'my-org-id' --project-name 'nana-core-testnet'"
},
"dependencies": {
"@bananapus/permission-ids": "^0.0.12",
"@chainlink/contracts": "^1.2.0",
"@openzeppelin/contracts": "^5.0.2",
"@prb/math": "^4.0.3",
"@uniswap/permit2": "github:Uniswap/permit2"
},
"devDependencies": {
"@sphinx-labs/plugins": "^0.33.0"
}
}