-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (54 loc) · 1.77 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
49
50
51
52
53
54
{
"name": "@exactly/liquidation-bot",
"version": "0.1.20",
"private": true,
"scripts": {
"version": "changeset version && node .changeset/cargo.js && npm install --legacy-peer-deps --package-lock-only && git commit --all --amend --no-edit",
"lint": "run-s --continue-on-error lint:**",
"lint:eslint": "eslint --ext .ts,.js,.cjs,.mjs .",
"lint:solhint": "solhint 'contracts/**/*.sol'",
"lint:slither": "slither ."
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@chainlink/contracts": "0.6.1",
"@exactly/protocol": "^0.2.10",
"@uniswap/v3-core": "1.0.1",
"@uniswap/v3-periphery": "1.4.3",
"solmate": "transmissions11/solmate#v7"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@changesets/types": "^5.2.1",
"@ltd/j-toml": "^1.38.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@tenderly/hardhat-tenderly": "^1.6.1",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/eslint": "^8.37.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"dotenv": "^16.0.3",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.4",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^6.2.3",
"hardhat": "2.13.0",
"hardhat-deploy": "^0.11.25",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^5.0.3"
}
}