-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.39 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
{
"name": "api",
"description": "The Balancer API is a user-friendly RESTful interface designed to simplify the implementation of Value Averaging Strategies on any Bitcoin Spot Market.",
"private": false,
"version": "1.0.11",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "ts-lib-builder --tsconfig=tsconfig.build.json",
"test": "echo \"Error: tests are executed with npm run test:(integration|unit|bench)\" && exit 1",
"test:integration": "vitest run --config vitest.test-integration.config.ts",
"test:unit": "vitest run --config vitest.test-unit.config.ts",
"test:bench": "vitest --config vitest.test-bench.config.ts bench"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitcoin-balancer/api.git"
},
"keywords": [
"bitcoin",
"trading",
"bitcoin-trading",
"strategy",
"trading-strategy",
"bitcoin-trading-strategy",
"spot",
"spot-market",
"bitcoin-spot-market",
"automated",
"self-hosted"
],
"author": "Jesus Graterol",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitcoin-balancer/api/issues"
},
"homepage": "https://github.com/bitcoin-balancer/api#readme",
"devDependencies": {
"@types/cookie-parser": "1.4.8",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/jsonwebtoken": "9.0.7",
"@types/morgan": "1.9.9",
"@types/ms": "0.7.34",
"@types/node": "20.17.9",
"@types/pg": "8.11.10",
"@types/uuid": "10.0.0",
"@types/ws": "8.5.13",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint-config-airbnb-typescript": "18.0.0",
"ts-lib-builder": "1.0.5",
"typescript": "5.7.2",
"vitest": "1.6.0"
},
"dependencies": {
"aes256": "1.1.0",
"altcha-lib": "0.3.0",
"api-response-utils": "1.0.1",
"argon2": "0.41.1",
"bignumber-utils": "1.0.4",
"body-parser": "2.0.2",
"cookie-parser": "1.4.7",
"cors": "2.8.5",
"date-fns": "3.6.0",
"error-message-utils": "1.1.2",
"express": "5.0.1",
"express-rate-limit": "7.4.1",
"fetch-request-node": "1.0.5",
"helmet": "7.2.0",
"jsonwebtoken": "9.0.2",
"morgan": "1.10.0",
"ms": "2.1.3",
"otplib": "12.0.1",
"pg": "8.13.1",
"rxjs": "7.8.1",
"socket.io": "4.8.1",
"systeminformation": "5.23.5",
"web-utils-kit": "1.0.3",
"ws": "8.18.0"
}
}