-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.68 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
{
"name": "epoca-core-api",
"version": "2.0.0",
"description": "Epoca Core API is a RESTful API that can be interacted with through the GUI. It is designed to manage the platform as well as the implementation of the Value Averaging Strategy.",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"build": "node ./node_modules/gulp/bin/gulp.js",
"test": "jasmine-ts --config=./jasmine/e2e.json",
"test-api-error": "jasmine-ts --config=./jasmine/api-error.json",
"test-auth": "jasmine-ts --config=./jasmine/auth.json",
"test-candlestick": "jasmine-ts --config=./jasmine/candlestick.json",
"test-database": "jasmine-ts --config=./jasmine/database.json",
"test-gui-version": "jasmine-ts --config=./jasmine/gui-version.json",
"test-ip-blacklist": "jasmine-ts --config=./jasmine/ip-blacklist.json",
"test-notification": "jasmine-ts --config=./jasmine/notification.json",
"test-server": "jasmine-ts --config=./jasmine/server.json",
"test-utils": "jasmine-ts --config=./jasmine/utils.json"
},
"private": false,
"repository": {
"type": "git",
"url": "git@github.com:epoca-technology/epoca-core-api.git"
},
"author": "Jesus Graterol",
"license": "ISC",
"homepage": "https://github.com/epoca-technology/epoca-core-api",
"dependencies": {
"@getvim/execute": "1.0.0",
"adm-zip": "0.5.9",
"bignumber.js": "9.0.1",
"body-parser": "1.19.0",
"cli-progress": "3.10.0",
"cors": "2.8.5",
"express": "4.17.1",
"express-rate-limit": "5.5.1",
"firebase-admin": "10.0.2",
"generate-password": "1.7.0",
"https": "1.0.0",
"inversify": "6.0.1",
"inversify-inject-decorators": "3.1.0",
"moment": "2.29.1",
"moment-timezone": "0.5.34",
"morgan": "1.10.0",
"otplib": "12.0.1",
"pg": "8.7.1",
"reflect-metadata": "0.1.13",
"request-ip": "2.1.3",
"rxjs": "7.5.2",
"systeminformation": "5.10.5",
"telegraf": "4.6.0",
"uuid": "8.3.2",
"ws": "8.13.0"
},
"devDependencies": {
"@types/adm-zip": "0.5.0",
"@types/cli-progress": "3.9.2",
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/express-rate-limit": "5.1.3",
"@types/jasmine": "3.10.2",
"@types/jest": "27.0.3",
"@types/morgan": "1.9.3",
"@types/pg": "8.6.3",
"@types/request-ip": "0.0.37",
"@types/systeminformation": "3.54.1",
"@types/uuid": "8.3.4",
"@types/ws": "8.5.4",
"gulp": "4.0.2",
"gulp-clean": "0.4.0",
"gulp-minify": "3.1.0",
"gulp-typescript": "6.0.0-alpha.1",
"jasmine": "3.10.0",
"jasmine-ts": "0.4.0",
"json-stable-stringify": "1.0.1",
"mockdate": "3.0.5",
"ts-node": "10.4.0",
"typescript": "4.5.2"
}
}