This repository has been archived by the owner on Apr 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 2.08 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
{
"name": "@badlabs/tradebot-core",
"version": "1.0.0-beta",
"description": "Core library for trade bots",
"main": "index.js",
"types": "./",
"scripts": {
"lint": "eslint ./src/*",
"prettier": "eslint ./src/* --fix",
"build": "tsc",
"clean": "tsc --build --clean && delete-empty ./",
"build:test": "tsc --project tsconfig.test.json",
"test:tinkoff": "ts-node test/tinkoff/index.ts --project test/tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/badlabs/tradebot-core.git"
},
"homepage": "https://github.com/badlabs/tradebot-core#readme",
"bugs": {
"url": "https://github.com/badlabs/tradebot-core/issues"
},
"keywords": [
"robotics",
"backend",
"trading",
"core",
"typescript",
"server",
"api"
],
"author": {
"name": "Nikolay Dorofeev",
"email": "[email protected]",
"url": "https://d0rich.github.io/"
},
"license": "Apache-2.0",
"config": {
"host": "0.0.0.0",
"port": "4268",
"logs": "./logs"
},
"devDependencies": {
"@tinkoff/invest-openapi-js-sdk": "^1.5.0",
"@types/colors": "^1.2.1",
"@types/cors": "^2.8.13",
"@types/deepmerge": "^2.2.0",
"@types/express": "^4.17.13",
"@types/node": "^17.0.4",
"@types/node-schedule": "^1.3.2",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"delete-empty": "^3.0.0",
"dotenv": "^10.0.0",
"eslint": "^8.30.0",
"nodemon": "^2.0.15",
"prettier": "2.8.1",
"prettier-eslint": "^15.0.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"dependencies": {
"@trpc/client": "^10.5.0",
"@trpc/server": "^10.5.0",
"better-sqlite3": "^7.6.2",
"colors": "^1.4.0",
"cors": "^2.8.5",
"deepmerge": "^4.2.2",
"express": "^4.17.2",
"node-schedule": "^2.1.0",
"reflect-metadata": "^0.1.13",
"simple-node-logger": "^21.8.12",
"sqlite3": "^5.1.2",
"typeorm": "^0.3.10",
"ws": "^8.11.0",
"zod": "^3.20.2"
}
}