-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.41 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
{
"name": "trading-bot",
"version": "0.3.0",
"description": "Steal My Cryptocurrency Trading Bot!",
"engines": {
"node": "10.x"
},
"main": "index.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@ethersproject/contracts": "^5.0.5",
"@ethersproject/providers": "^5.0.12",
"@ethersproject/solidity": "^5.0.5",
"@truffle/hdwallet-provider": "^1.0.35",
"@types/web3": "^1.2.2",
"@uniswap/sdk": "^3.0.3",
"axios": "^0.19.2",
"big.js": "^5.1.2",
"console.table": "^0.10.0",
"dotenv": "^8.2.0",
"ejs": "^2.5.6",
"express": "^4.15.2",
"lodash": "^4.17.15",
"moment": "^2.25.3",
"moment-timezone": "^0.5.28",
"numeral": "^2.0.6",
"web3": "^1.3.0"
},
"devDependencies": {
"@types/big.js": "^6.0.0",
"@types/ethereumjs-tx": "^2.0.0",
"@types/express": "^4.17.8",
"@types/fs-extra": "^9.0.2",
"@types/lodash": "^4.14.162",
"@types/node": "^14.11.8",
"@types/shelljs": "^0.8.8",
"fs-extra": "^9.0.1",
"nodemon": "^2.0.5",
"npm-run-all": "^4.1.5",
"request": "^2.81.0",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
},
"license": "MIT"
}