forked from EdNoepel/ajna-keeper
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.62 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.62 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
49
50
51
52
53
{
"name": "ajna-keeper",
"version": "0.0.1",
"description": "keeper bot for Ajna lending protocol",
"main": "index.ts",
"scripts": {
"start": "./node_modules/ts-node/dist/bin.js src/index.ts",
"format": "prettier --write .",
"compile": "npx hardhat compile",
"unit-tests": "npx mocha --require ts-node/register 'src/unit-tests/**/*.test.ts'",
"integration-tests": "npx hardhat test",
"create-keystore": "./node_modules/ts-node/dist/bin.js scripts/create-keystore.ts",
"fork-base": "FORK_NETWORK=base hardhat node"
},
"author": "",
"license": "MIT",
"dependencies": {
"@ajna-finance/sdk": "^0.4.7",
"@ethersproject/abstract-provider": "^5.7.0",
"@inquirer/prompts": "^7.2.3",
"@openzeppelin/contracts": "4.8.0",
"@uniswap/sdk-core": "^7.5.0",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-sdk": "^3.24.0",
"axios": "^1.8.1",
"ethers": "^5.7.2",
"graphql": "^16.10.0",
"graphql-request": "6.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.1.6",
"winston": "^3.17.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-verify": "^2.0.13",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "6.1.2",
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.10",
"@types/sinon": "^17.0.3",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"dotenv": "^16.4.7",
"hardhat": "^2.22.18",
"prettier": "^3.4.2",
"sinon": "^19.0.2",
"typechain": "^8.1.0"
}
}