-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
86 lines (86 loc) · 2.88 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@rainlanguage/arb-bot",
"version": "2.5.1",
"description": "NodeJS app that clears Rain orderbook orders against decentralized liquididty providers (decentralized exchanges)",
"author": "Rain Protocol",
"license": "CAL-1.0",
"repository": {
"type": "git",
"url": "https://github.com/rainlanguage/arb-bot.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/rainlanguage/arb-bot/issues"
},
"homepage": "https://github.com/rainlanguage/arb-bot/",
"engines": {
"node": ">=18"
},
"engineStrict": true,
"main": "./dist/index.js",
"files": [
"src",
"./dist",
"./arb-bot.js",
"./example.env",
"./lib/sushiswap"
],
"bin": {
"arb-bot": "./arb-bot.js"
},
"scripts": {
"prepublish": "npm run build",
"test": "npm run unit-test && npm run e2e-test",
"unit-test": "hardhat test ./test/*.test.js",
"e2e-test": "hardhat test",
"lint": "eslint ./src ./test ./arb-bot.js",
"lint-fix": "eslint ./src ./test ./arb-bot.js --fix",
"arb-bot": "ts-node arb-bot",
"build": "tsc"
},
"dependencies": {
"@opentelemetry/api": "^1.8.0",
"@opentelemetry/core": "^1.22.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.49.1",
"@opentelemetry/exporter-trace-otlp-http": "^0.49.1",
"@opentelemetry/exporter-trace-otlp-proto": "^0.49.1",
"@opentelemetry/resources": "^1.22.0",
"@opentelemetry/sdk-trace-base": "^1.22.0",
"@opentelemetry/semantic-conventions": "^1.22.0",
"@rainlanguage/orderbook": "^0.0.1-alpha.1",
"axios": "^1.3.4",
"commander": "^11.0.0",
"dotenv": "^16.0.3",
"ethers": "5.7.0",
"sushi": "./lib/sushiswap/packages/sushi",
"viem": "=2.21.35"
},
"devDependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomicfoundation/hardhat-viem": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@types/mocha": "^10.0.0",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"chai": "^4.3.6",
"copyfiles": "^2.4.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.1",
"eslint": "^8.26.0",
"hardhat": "^2.17.8",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-storage-layout": "^0.1.6",
"jsdoc": "^4.0.0",
"jsdoc-to-markdown": "^7.1.1",
"mocha": "^10.1.0",
"mockttp": "^3.12.0",
"rimraf": "^5.0.0",
"prettier": "^3.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}