-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
65 lines (65 loc) · 1.84 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
{
"name": "new-bedford-delegator",
"version": "1.0.0",
"description": "Compound Liquidation Bot - Delegator",
"main": "build/start.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@goldenagellc/web3-blocks": "^0.0.7",
"@grpc/grpc-js": "^1.2.2",
"big.js": "^5.2.2",
"dotenv-safe": "^8.2.0",
"node-fetch": "^2.6.1",
"node-ipc": "^9.1.4",
"web3": "^1.3.4",
"winston": "^3.3.3"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/big.js": "^6.0.2",
"@types/chai": "^4.2.14",
"@types/dotenv-safe": "^8.1.1",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.10",
"@types/node-fetch": "^2.5.8",
"@types/node-ipc": "^9.1.3",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"chai": "^4.2.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.2.0",
"ganache-cli": "^6.9.1",
"grpc-tools": "^1.10.0",
"grpc_tools_node_protoc_ts": "^5.0.1",
"mocha": "^7.2.0",
"prettier": "^2.2.1",
"ts-mocha": "^8.0.0",
"typescript": "^4.1.2"
},
"scripts": {
"start": "node .",
"build": "npx tsc -p .",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix",
"test": "npx mocha -r ts-node/register test/**/*.test.ts",
"build-proto": "../shared/build-proto.sh ../shared/proto/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haydenshively/New-Bedford.git"
},
"author": "Hayden Shively and Adam Egyed",
"license": "UNLICENSED",
"private": true,
"bugs": {
"url": "https://github.com/haydenshively/New-Bedford/issues"
},
"homepage": "https://github.com/haydenshively/New-Bedford#readme"
}