-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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
{
"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 .",
"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"
},
"author": "",
"license": "MIT",
"dependencies": {
"@ajna-finance/sdk": "^0.4.7",
"@inquirer/prompts": "^7.2.3",
"@uniswap/sdk-core": "^7.5.0",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-sdk": "^3.24.0",
"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": {
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.10",
"@types/sinon": "^17.0.3",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.1",
"dotenv": "^16.4.7",
"hardhat": "^2.22.18",
"prettier": "^3.4.2",
"sinon": "^19.0.2"
}
}