forked from futureswap/fs-cli-v4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.44 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
{
"name": "fs-cli-v4",
"version": "1.0.0",
"main": "src/index.ts",
"description": "",
"scripts": {
"test": "DOTENV_CONFIG_PATH=.env.test jest --detectOpenHandles",
"start": "npx ts-node src/index.ts",
"liquidation-bot:pm2:start": "pm2 reload pm2.config.js",
"liquidation-bot:pm2:stop": "pm2 stop pm2.config.js",
"pm2:monit": "pm2 monit",
"debug": "npx node --inspect-brk -r ts-node/register src/index.ts",
"clean": "npx rimraf dist tsconfig.tsbuildinfo",
"build": "tsc",
"lint": "npx prettier --check .",
"format": "npx prettier --write .",
"check_dot_only": "npx dot-only-hunter src"
},
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.24.0",
"lodash": "^4.17.21",
"node-input-validator": "^4.5.0",
"pm2": "^5.1.2",
"tx2": "^1.0.4",
"yargs": "^17.2.1"
},
"devDependencies": {
"@openzeppelin/contracts": "^4.3.2",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.176",
"@types/node": "^16.11.6",
"@types/yargs": "17.0.5",
"@uniswap/v3-core": "^1.0.0",
"chai": "4.3.4",
"date-fns": "^2.25.0",
"dot-only-hunter": "1.0.3",
"dotenv": "^10.0.0",
"ethers": "5.4.1",
"jest": "^27.3.1",
"jest-extended": "^1.1.0",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "1.0.0-beta.18",
"rimraf": "3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.5.5"
}
}