forked from philsong/perp-arbitrageur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.14 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
{
"name": "perp-arbitrageur",
"version": "0.1.0",
"description": "",
"scripts": {
"codegen": "typechain --target ethers-v5 --outDir ./types/ethers ./node_modules/@perp/contract/build/contracts/**/*.json",
"compile": "tsc -b .",
"compile-watch": "tsc -b --watch .",
"build": "npm run codegen && npm run compile",
"clean": "rm -rf ./build ./.serverless ./nyc_output",
"arbitrage": "env $(cat .env.production | grep -v '#' | xargs) ts-node --files src/index.ts",
"invoke-local": "sls invoke local --stage production --function arbitrageur",
"deploy": "npm run build && sls deploy --aws-s3-accelerate --stage production",
"fast-deploy": "npm run compile && sls deploy --aws-s3-accelerate --stage production"
},
"author": "",
"license": "BSD-3-Clause",
"dependencies": {
"@perp/contract": "1.0.4",
"async-mutex": "0.2.6",
"big.js": "5.2.2",
"ethers": "5.4.2",
"ftx-api-rest": "0.0.6",
"lodash": "4.17.15",
"log4js": "6.2.1",
"luxon": "1.23.0",
"node-fetch": "2.6.0",
"reflect-metadata": "0.1.13",
"source-map-support": "0.5.19",
"typedi": "0.8.0"
},
"devDependencies": {
"@testdeck/di-typedi": "0.0.10",
"@typechain/ethers-v5": "3.0.0",
"@types/big.js": "4.0.5",
"@types/lodash": "4.14.154",
"@types/luxon": "1.22.0",
"@types/node": "13.13.4",
"@types/node-fetch": "2.5.7",
"aws-sdk": "2.667.0",
"dotenv": "8.2.0",
"import-sort-style-module": "^6.0.0",
"prettier": "^2.3.2",
"prettier-plugin-import-sort": "^0.0.7",
"serverless": "1.69.0",
"serverless-dotenv-plugin": "2.4.2",
"serverless-offline": "6.1.4",
"serverless-webpack": "5.3.2",
"ts-node": "8.9.1",
"tsconfig-paths": "3.9.0",
"typechain": "4.0.0",
"typedoc": "0.17.6",
"typescript": "3.8.3",
"webpack": "4.43.0"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}