-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.12 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
55
56
57
58
59
60
61
{
"name": "@beefyfinance/beefy-position-adjuster",
"version": "0.1.0",
"description": "Beefy Position Adjuster",
"url": "https://github.com/beefyfinance/Beefy-Position-Adjuster",
"private": true,
"scripts": {
"prepare": "husky install",
"build": "rm -rf dist && tsc",
"format": "prettier --write ./src/**/*.{js,json,md,ts}",
"format:check": "prettier --check ./src/**/*.{js,json,md,ts}",
"lint": "eslint --cache .",
"set-secrets": "ts-node -r dotenv/config src/scripts/set-secrets.ts",
"delete-secrets": "ts-node -r dotenv/config src/scripts/delete-secrets.ts",
"list-secrets": "ts-node -r dotenv/config src/scripts/list-secrets.ts",
"test:tickMover": "ts-node -r dotenv/config src/scripts/test.ts --function beefy-tick-mover --showLogs",
"test": "ts-node -r dotenv/config src/scripts/test.ts",
"deploy:tickMover": "npx w3f deploy src/web3-functions/beefy-tick-mover/index.ts"
},
"keywords": [],
"author": "Beefy Finance",
"license": "ISC",
"devDependencies": {
"@gelatonetwork/ops-sdk": "^2.2.0-alpha",
"@tsconfig/recommended": "^1.0.1",
"@types/command-line-args": "^5.2.0",
"@types/lodash": "^4.14.191",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.6.0",
"colors": "^1.4.0",
"dotenv": "^16.0.3",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"fast-glob": "^3.2.12",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.3.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.0"
},
"dependencies": {
"@gelatonetwork/web3-functions-sdk": "^0.4.3",
"@kargakis/ethers-multicall": "^0.4.0",
"blockchain-addressbook": "^0.41.35",
"ethereum-multicall": "^2.15.0",
"ethers": "^5.7.1",
"ethers-multicall": "^0.2.3",
"ky": "^0.32.2",
"lodash": "^4.17.21",
"p-queue": "^7.3.4",
"string-replace-all": "^2.0.0",
"ts-command-line-args": "^2.4.2",
"web3": "^1.8.2",
"web3-eth-contract": "^1.8.2"
},
"lint-staged": {
"./src/**/*.{js,json,md,ts}": "prettier --write"
}
}