forked from duckdegen/apebot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.98 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "apebot",
"version": "1.0.0",
"description": "Sniping Binance for fun and profit",
"scripts": {
"dev:announcements": "nodemon src/main_announcement.ts",
"dev:dex": "nodemon src/main_dex_purchasing.ts",
"dev:sell": "nodemon src/main_selling.ts",
"dev:latency": "nodemon src/main_latency.ts",
"dev:markets": "nodemon src/main_markets.ts",
"dev:twilio": "nodemon src/main_twilio_test.ts",
"dev:arbitrage": "nodemon src/main_arbitrage.ts",
"dev:mempool": "nodemon src/main_mempool.ts",
"dev:apicrawler": "nodemon src/main_apicrawler.ts",
"announcements": "node build/src/main_announcement.js",
"dex": "node build/src/main_dex_purchasing.js",
"sell": "node build/src/main_selling.js",
"latency": "node build/src/main_latency.js",
"markets": "node build/src/main_markets.ts",
"twilio": "node build/src/main_twilio_test.ts",
"apicrawler": "node build/src/main_apicrawler.ts",
"build": "ttsc --p tsconfig.build.json",
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll",
"eslint:lint": "eslint src/**/*.{ts,tsx}",
"eslint:format": "eslint --fix src/**/*.{ts,tsx}",
"postinstall": "patch-package",
"prettier:test": "prettier -c ./.prettierrc src/**/*.{ts,tsx,js,json,css,less,sass,scss,less,html,pug,md}",
"prettier:format": "prettier -c ./.prettierrc --write src/**/*.{ts,js,json,css,sass,scss,less,html,pug,md}",
"prettier:format-e2e": "prettier -c ./.prettierrc --write e2e/**/*.testcafe.ts",
"test:e2e-live": "testcafe --live --disable-screenshots",
"test:e2e-debug": "testcafe chrome --disable-screenshots"
},
"keywords": [],
"author": "BeepBoop",
"license": "GPL",
"devDependencies": {
"@0x/abi-gen": "^5.4.21",
"@prettier/plugin-pug": "^1.13.3",
"@types/crypto-js": "^4.0.1",
"@types/got": "^9.6.11",
"@types/he": "^1.1.2",
"@types/jest": "^27.0.1",
"@types/mongoose": "^5.10.3",
"@types/nanotimer": "^0.3.0",
"@types/node": "^14.14.28",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"husky": "^5.0.9",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"testcafe": "^1.11.0",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"ttypescript": "^1.5.12",
"typescript": "^4.1.5",
"typescript-transform-paths": "^3.3.1"
},
"dependencies": {
"@0x/contract-wrappers": "^13.13.0",
"@0x/utils": "^6.2.0",
"@alch/alchemy-web3": "1.1.8",
"ccxt.pro": "git+https://github.com/kroitor/ccxt.pro.git",
"chrono-node": "^2.3.1",
"crypto-js": "^4.0.0",
"date-fns": "^2.19.0",
"date-fns-tz": "^1.1.2",
"dotenv": "^8.2.0",
"ethers": "^5.0.31",
"express": "^4.17.1",
"got": "^11.8.1",
"he": "^1.2.0",
"hpagent": "^0.1.2",
"joi": "^17.4.0",
"mongoose": "^5.11.17",
"mongoose-bignumber": "^1.2.0",
"nanotimer": "^0.3.15",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.6",
"sound-play": "^1.1.0",
"swstats": "^0.8.1",
"tslog": "^3.1.1",
"twilio": "^3.62.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.{ts,js,json,css,sass,scss,less,html,pug,md}": [
"prettier -c ./.prettierrc --write"
]
}
}