-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
107 lines (107 loc) · 3.84 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "triangular-arbitrage2",
"version": "0.1.0",
"description": "a server side application for perform triangular arbitrage.",
"author": "[email protected]",
"license": "GPL3",
"repository": {
"type": "git",
"url": "https://github.com/zlq4863947/triangular-arbitrage2.git"
},
"scripts": {
"deploy:all": "yarn deploy && gulp zip && gulp gzip",
"deploy:linux": "yarn deploy && gulp gzip",
"deploy:windows": "yarn deploy && gulp zip",
"deploy": "yarn prebuild && yarn build && yarn bundle",
"bundle": "gulp bundle",
"build": "gulp build",
"prebuild": "rimraf dist && gulp minify",
"db:sync": "yarn build && yarn _schema:sync",
"docker:up": "docker-compose -f ./docker-compose.yml up -d",
"docker:down": "docker-compose -f ./docker-compose.yml down",
"format": "yarn format:ts:import && yarn format:ts",
"format:ts": "prettier --config .prettierrc --write \"{apps,libs,tools}/**/*.ts\"",
"format:ts:import": "import-sort --write \"{apps,libs}/**/*.ts\"",
"webpack:build": "webpack --config webpack/deploy.config.js --env",
"start:cli": "cross-env NODE_ENV=prod ts-node -r tsconfig-paths/register apps/cli-app/src/main.ts",
"start:pro-cli": "cross-env NODE_ENV=prod ts-node -r tsconfig-paths/register apps/pro-cli-app/src/main.ts",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"jest": "jest --config=jest.config.js --detectOpenHandles",
"test": "cross-env NODE_ENV=test yarn jest -- --runInBand",
"test:cov": "yarn jest -- --coverage",
"test:debug": "cross-env NODE_ENV=test node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config apps/cli-app/test/jest-e2e.json",
"_schema:sync": "yarn ts-node $(npm bin)/typeorm schema:sync"
},
"dependencies": {
"@nestjs/common": "^7.6.15",
"@nestjs/core": "^7.6.15",
"@nestjs/platform-express": "^7.6.15",
"@nestjs/typeorm": "^8.0.2",
"ascii-table": "^0.0.9",
"axios": "^0.21.2",
"bignumber.js": "^9.0.1",
"binance": "^1.3.7",
"ccxt": "^1.50.24",
"chalk": "^4.1.1",
"circular-json": "^0.5.9",
"config": "^3.3.6",
"cross-env": "^7.0.3",
"glob-parent": "^5.1.2",
"lodash": "^4.17.21",
"log4js": "^6.3.0",
"moment": "^2.29.1",
"mysql2": "^2.3.0",
"nodemailer": "^6.6.3",
"path-parse": "^1.0.7",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7",
"toml": "^3.0.0",
"typeorm": "^0.2.36",
"ws": "^7.4.6",
"yargs-parser": "^13.1.2"
},
"devDependencies": {
"@nestjs/cli": "^7.6.0",
"@nestjs/schematics": "^7.3.0",
"@nestjs/testing": "^7.6.15",
"@types/express": "^4.17.11",
"@types/gulp": "^4.0.8",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.172",
"@types/node": "^14.14.36",
"@types/nodemailer": "^6.4.4",
"@types/supertest": "^2.0.10",
"@types/ws": "^7.4.4",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"glob": "^7.1.7",
"gulp": "^4.0.2",
"gulp-gzip": "^1.4.2",
"gulp-tar": "^3.1.0",
"gulp-terser": "^2.0.1",
"gulp-ts-alias": "^1.3.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-zip": "^5.1.0",
"import-sort": "5.0.0",
"import-sort-cli": "5.0.0",
"import-sort-parser-typescript": "5.0.0",
"import-sort-style-module-alias": "1.0.4",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"supertest": "^6.1.3",
"terser-webpack-plugin": "^5.1.2",
"ts-jest": "^26.5.4",
"ts-loader": "^8.0.18",
"ts-node": "^9.1.1",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.2.3",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
"webpack-ignore-dynamic-require": "^1.0.0"
}
}