forked from Superalgos/Superalgos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.58 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
108
109
110
111
112
113
114
115
116
117
{
"name": "superalgos",
"version": "1.3.0",
"description": "Superalgos is a free, open-source crypto trading bot",
"license": "Apache License 2.0",
"homepage": "https://www.superalgos.org/",
"author": {
"name": "Superalgos Contributors"
},
"scripts": {
"start": "node platform minMemo noBrowser",
"presetup": "git checkout develop && git pull upstream develop",
"setup": "node setup noShortcuts",
"setupWithTf": "node setupWithTf noShortcuts",
"postsetup": "npm start",
"dist": "electron-builder -c build/electron-builder.json",
"postinstall": "electron-builder install-app-deps",
"startNetwork": "node network",
"startSocialTrade": "node socialTrade",
"installDesktopReact": "cd ./DesktopReact && npm ci",
"startLocalDesktopReact": "start npm run startNetwork && cd ./DesktopReact && start npm run startDesktopReactBackend && start npm run startDesktopReactFrontend",
"startDesktopReact": "cd ./DesktopReact && start npm run startDesktopReactBackend && start npm run startDesktopReactFrontend",
"unitTest": "jest --silent",
"unitTest:coverage": "jest --silent --coverage",
"unitTest:debug": "DEBUG=nock.* jest",
"lintAll": "eslint . --ext .js",
"lintFile": "eslint --ext .js",
"prepare": "husky install",
"build": "webpack build --config ./Dashboards/webpack.config.js",
"serve": "webpack-dev-server --mode development --config ./Dashboards/webpack.config.js"
},
"dependencies": {
"@discordjs/rest": "^0.1.0-canary.0",
"@octokit/rest": "^18.12.0",
"@reduxjs/toolkit": "^1.6.2",
"@slack/web-api": "^6.5.1",
"axios": "^0.26.0",
"bootstrap": "*",
"bootstrap-vue": "*",
"ccxt": "^1.92.75",
"child_process": "^1.0.2",
"discord-api-types": "^0.25.2",
"discord.js": "^14.6.0",
"dotenv": "8.2.0",
"dotenv-expand": "5.1.0",
"electron-updater": "^4.6.1",
"ethereumjs-common": "^1.5.2",
"ethereumjs-tx": "^2.1.2",
"ethers": "^5.5.3",
"http": "0.0.1-security",
"https": "^1.0.0",
"hyperquest": "^2.1.3",
"ip": "^1.1.5",
"jsdom": "^20.0.1",
"lookpath": "^1.2.2",
"ndjson": "^2.0.0",
"node-fetch": "^2.6.6",
"npm": "^9.1.2",
"open": "^8.4.0",
"path": "^0.12.7",
"pm2": "^5.2.2",
"simple-git": "^3.13.0",
"telegraf": "^4.11.2",
"twitter-api-v2": "^1.7.1",
"util": "^0.12.4",
"vader-sentiment": "^1.1.3",
"vue": "^3.2.40",
"vue-router": "^4.1.5",
"web3": "^1.6.1",
"workbox-webpack-plugin": "^6.5.4",
"ws": "^8.4.0",
"yargs": "^17.6.2"
},
"optionalDependencies": {
"@tensorflow/tfjs-node": "^2.8.6"
},
"devDependencies": {
"css-loader": "^6.7.1",
"electron": "^21.3.1",
"electron-builder": "^23.6.0",
"eslint": "^8.10.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"nock": "^13.2.4",
"vue-loader": "^17.0.0",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.7.10",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"transform": {
"^.+\\.[m|t|j]s?$": "babel-jest"
},
"testMatch": [
"**/.tests/**/?(*.)(test).js?(x)",
"**/.tests/?(*.)(test).js?(x)"
],
"testPathIgnorePatterns": [
"node_modules"
],
"coverageDirectory": "<rootDir>/.testsCoverage",
"coveragePathIgnorePatterns": [
"<rootDir>/Launch-Scripts/*.ico",
"<rootDir>/Launch-Scripts/*.sh"
],
"moduleFileExtensions": [
"js",
"json"
]
}
}