-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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": "arbitraging",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start:dev": "nodemon",
"start": "tsc && node dist/index.js",
"scan-arbitrage": "nodemon --watch 'src/**' --ext 'ts,json' --ignore 'src/**/*.spec.ts' --exec 'ts-node src/scanArbitrage.ts'",
"lint": "eslint . --ext .ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node-telegram-bot-api": "^0.64.2",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"module-alias": "^2.2.3",
"nodemon": "^3.0.3",
"prettier": "^3.2.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@defiverse/balancer-sdk": "0.1.147",
"bignumber.js": "^9.1.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.2",
"ethers": "^5.0.0",
"express": "^4.18.2",
"helmet": "^7.1.0",
"lockfile": "^1.0.4",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"node-telegram-bot-api": "^0.64.0",
"pg": "^8.11.3",
"sequelize": "^6.35.2"
},
"_moduleAliases": {
"@": "dist"
}
}