-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.39 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.39 KB
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
{
"name": "fundmaker-strategy-sdk",
"version": "1.0.0",
"main": "src/index.js",
"type": "module",
"scripts": {
"print-pools": "node tools/pools-csv.js -p",
"export-pools": "node tools/pools-csv.js -e",
"import-pools": "node tools/pools-csv.js -i",
"pool-finder": "node tools/pool-finder.js",
"strategy": "node tools/strategy.js",
"generate": "drizzle-kit generate",
"migrate": "drizzle-kit migrate",
"stats": "node tools/stats.js",
"fetch-spot": "node tools/fetch-spot-bv.js",
"fetch-spot-direct": "node tools/fetch-spot-direct.js",
"fetch-iv": "node tools/fetch-iv.js",
"hedge": "node tools/hedge.js",
"update": "node tools/update.js",
"fetch-coinmarketcap": "node tools/fetch-coinmarketcap.js"
},
"keywords": [],
"author": "FundMaker",
"license": "MIT",
"description": "",
"dependencies": {
"@json2csv/plainjs": "^7.0.6",
"adm-zip": "^0.5.16",
"axios": "^1.7.7",
"axios-retry": "^4.5.0",
"better-sqlite3": "^11.3.0",
"bignumber.js": "^9.1.2",
"commander": "^12.1.0",
"csv-parse": "^5.5.6",
"csv-parser": "^3.0.0",
"csv-writer": "^1.6.0",
"decimal.js": "^10.4.3",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.33.0",
"fast-csv": "^5.0.1",
"ml-regression-simple-linear": "^3.0.1"
},
"devDependencies": {
"drizzle-kit": "^0.24.2"
},
"imports": {
"#src/*": "./src/*"
}
}