This repository has been archived by the owner on May 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
69 lines (69 loc) · 2.42 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
{
"name": "argo-trading",
"description": "HTML5 interface for the OANDA platform",
"version": "6.5.0",
"main": "./main.js",
"bin": {
"argo-trading": "./bin/argo-trading",
"argo-trading-standalone": "./bin/argo-trading-standalone"
},
"preferGlobal": true,
"repository": "[email protected]:albertosantini/argo.git",
"keywords": [
"trading",
"forex",
"fxtrade",
"oanda"
],
"author": "Alberto Santini",
"license": "MIT",
"engines": {
"node": ">=8.11.1"
},
"dependencies": {
"async": "^3.2.0",
"body-parser": "^1.19.0",
"cron": "^1.8.2",
"d3": "^6.3.1",
"d3fc": "^15.1.2",
"document-register-element": "^1.14.10",
"electron": "^11.5.0",
"express": "^4.17.1",
"faye-websocket": "^0.11.3",
"flic": "^1.3.7",
"https-proxy-agent": "^5.0.0",
"hyperhtml": "^2.33.0",
"introspected": "^0.2.6",
"limiter": "^1.1.5",
"tachyons": "^4.12.0"
},
"optionalDependencies": {
"electron": "^11.5.0"
},
"scripts": {
"test": "npm run lint && npm run electron -- index-spec.html",
"start": "node src/server/app.js",
"debug": "node --inspect src/server/app.js",
"electron": "electron .",
"lint": "eslint main.js src/**/*.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"rollup": "rollup -c",
"pm2-start-trading": "pm2 start bin/argo-trading --name trading --time",
"pm2-stop-trading": "pm2 stop trading && pm2 delete trading",
"pm2-restart-trading": "npm run pm2-stop-trading && npm run pm2-start-trading",
"deploy-setup-trading": "pm2 deploy trading setup",
"deploy-update-trading": "pm2 deploy trading update --force",
"pm2-start-streaming": "pm2 start bin/argo-trading-start-streaming --name streaming --time",
"pm2-stop-streaming": "pm2 stop streaming && pm2 delete streaming",
"pm2-restart-streaming": "npm run pm2-stop-streaming && npm run pm2-start-streaming",
"deploy-setup-streaming": "pm2 deploy streaming setup",
"deploy-update-streaming": "pm2 deploy streaming update --force"
},
"devDependencies": {
"chai": "^4.2.0",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.17.0",
"mocha": "^8.2.1",
"rollup": "^2.36.1"
}
}