-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 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
{
"name": "decentralized-finance-defi",
"version": "4.2.0",
"description": "This package provides distributed ledger based banking features like payments, deposits, loans and automated investment patterns.",
"main": "./dist/index.js",
"scripts": {
"build": "tsc --p ./",
"test": "jest",
"ignore-scripts": "npm config set ignore-scripts true",
"npm-publish": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michael-spengler/decentralized-finance.git"
},
"keywords": [
"DeFi",
"Ethereum",
"Crypto",
"Blockchain",
"Distributed Ledger"
],
"author": "Michael Spengler",
"license": "MIT",
"bugs": {
"url": "https://github.com/michael-spengler/decentralized-finance/issues"
},
"homepage": "https://github.com/michael-spengler/decentralized-finance#readme",
"dependencies": {
"@compound-finance/compound-js": "^0.2.4",
"@dydxprotocol/perpetual": "^1.2.1",
"@dydxprotocol/solo": "^0.39.2",
"@uniswap/sdk": "^3.0.3",
"axios": "^0.21.1",
"brain.js": "^2.0.0-beta.2",
"csv-writer": "^1.6.0",
"dotenv": "^8.2.0",
"ethers": "^5.0.25",
"fs": "0.0.1-security",
"fs-extra": "^9.1.0",
"husky": "^4.3.7",
"jest": "^26.6.3",
"node-binance-api": "^0.12.5",
"os": "^0.1.1",
"play-sound": "^1.1.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"web3": "^1.3.1"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20"
},
"husky": {
"hooks": {
"pre-commit": "npm run build"
}
}
}