-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.24 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": "sperm-whales",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "18.9.0"
},
"scripts": {
"start": "nodemon",
"build": "rimraf ./build && tsc",
"bot": "yarn build && node build/telegram/telegramBot.js",
"server": "yarn build && node build/index.js",
"telegram": "yarn build && node build/telegram/telegramClient.js",
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^16.11.15",
"@types/nodemailer": "^6.4.4",
"@types/promise-retry": "^1.1.3",
"cors": "^2.8.5",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@pancakeswap/sdk": "^2.4.0",
"@uniswap/sdk": "^3.0.3",
"axios": "^0.24.0",
"bluebird": "^3.7.2",
"cls-rtracer": "^2.6.0",
"cross-env": "^7.0.3",
"ethers": "^5.5.2",
"express": "^4.17.2",
"ganache": "^7.0.0-beta.2",
"input": "^1.0.1",
"mongoose": "^6.1.5",
"nodemailer": "^6.7.2",
"promise-retry": "^2.0.1",
"telegraf": "^4.5.2",
"telegram": "^2.1.0",
"winston": "^3.3.3"
}
}