-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.47 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 3.47 KB
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": "myoraculum-botloader",
"version": "1.0.0",
"main": "app.js",
"license": "UNLICENSED",
"private": true,
"scripts": {
"clean": "rimraf ./build",
"build": "yarn clean && tsc -p ./ && cp -R ./src/bot/templates ./build/bot/templates && cp -R ./src/bot/webapps/html ./build/bot/webapps/html && cp -R ./src/bot/webapps/public ./build/bot/webapps/public",
"dev": "ts-node-dev --respawn --poll --exit-child --transpile-only --inspect=0.0.0.0:9229 --ignore-watch node_modules --watch src -- src/app.ts",
"dev:bot": "ts-node-dev --respawn --poll --exit-child --transpile-only --inspect=0.0.0.0:9229 --ignore-watch node_modules --watch src -- src/app.ts BOT-ONLY",
"dev:cloudtransfer": "ts-node-dev --respawn --poll --exit-child --transpile-only --inspect=0.0.0.0:9229 --ignore-watch node_modules --watch src -- src/cloudtransfer.ts",
"dev:tsloader": "ts-node-dev --respawn --poll --exit-child --transpile-only --inspect=0.0.0.0:9229 --ignore-watch node_modules --watch src -- src/tsloader.ts",
"dev:chartloader": "ts-node-dev --respawn --poll --exit-child --transpile-only --inspect=0.0.0.0:9229 --ignore-watch node_modules --watch src -- src/tradingviewchartloader.ts",
"dev:install": "yarn install",
"prod:install": "yarn install --production=true",
"dev:typeorm": "ts-node-dev --respawn --poll --exit-child --transpile-only --inspect=0.0.0.0:9229 --ignore-watch node_modules --watch src -- ./node_modules/typeorm/cli.js",
"prod:typeorm": "node ./node_modules/typeorm/cli.js",
"bot": "ts-node-dev --respawn --poll --exit-child --transpile-only --inspect=0.0.0.0:9229 --ignore-watch node_modules --watch src -- src/bot.ts",
"start": "node ./build/app.js"
},
"devDependencies": {
"@types/archiver": "^5.1.1",
"@types/cron": "^1.7.3",
"@types/ejs": "^3.1.0",
"@types/express": "^4.17.13",
"@types/jsonminify": "^0.4.1",
"@types/luxon": "^2.3.1",
"@types/node": "^16.4.1",
"@types/nodemailer": "^6.4.4",
"@types/pg-copy-streams": "^1.2.1",
"@types/qs": "^6.9.7",
"@types/unzipper": "^0.10.4",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
},
"dependencies": {
"@mangosteen/line-by-line": "^2.0.0",
"@tensorflow/tfjs": "^4.2.0",
"@tensorflow/tfjs-backend-webgl": "^4.2.0",
"@tensorflow/tfjs-core": "^4.2.0",
"@tensorflow/tfjs-node": "^4.2.0",
"archiver": "^5.3.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cron": "^1.8.2",
"cron-parser": "^4.2.0",
"csv-parser": "^3.0.0",
"deep-email-validator": "^0.1.18",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"form-data": "^4.0.0",
"googleapis": "^85.0.0",
"jsonminify": "^0.4.2",
"luxon": "^2.3.1",
"node-html-parser": "^4.1.0",
"nodemailer": "^6.6.3",
"pg": "^8.6.0",
"pg-copy-streams": "^6.0.4",
"puppeteer": "^10.2.0",
"puppeteer-extra": "^3.2.3",
"puppeteer-extra-plugin-stealth": "^2.9.0",
"qs": "^6.10.1",
"telegraf": "^4.10.0",
"ts-google-drive": "^0.0.5",
"tslog": "^3.2.0",
"typeorm": "^0.2.34",
"unzipper": "^0.10.11",
"ws": "^8.11.0"
}
}