-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.19 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
{
"name": "@chainlink/payment-abstraction",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "forge test --isolate",
"test:coverage": "forge coverage --no-match-coverage '^(src/vendor/|src/libraries/|script/).*' --no-match-path '*invariants*' --report lcov && genhtml -o coverage lcov.info",
"snapshot": "FOUNDRY_PROFILE=snapshot forge snapshot --isolate",
"solhint": "solhint --max-warnings 0 \"./src/**/*.sol\"",
"foundry": "foundryup --version nightly-fdd321bac95f0935529164a88faf99d4d5cfa321"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aave/core-v3": "^1.18.0",
"@chainlink/contracts": "^0.8.0",
"@chainlink/contracts-ccip": "^1.2.1",
"@openzeppelin/contracts": "^5.0.1",
"@uniswap/swap-router-contracts": "^1.3.1",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.4",
"solhint": "^5.0.3",
"solhint-plugin-chainlink-solidity": "git+https://github.com/smartcontractkit/chainlink-solhint-rules.git#v1.2.1"
},
"devDependencies": {
"lcov-parse": "^1.0.0",
"lint-staged": "^15.2.2",
"prettier": "3.2.5"
},
"lint-staged": {
"*": "forge fmt"
}
}