forked from albertosantini/argo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.8 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
{
"name": "argo-trading",
"description": "HTML5 interface for the OANDA platform",
"version": "6.2.1",
"main": "./main.js",
"bin": {
"argo-trading": "./bin/argo-trading",
"argo-trading-standalone": "./bin/argo-trading-standalone"
},
"preferGlobal": true,
"repository": "git@github.com:albertosantini/argo.git",
"keywords": [
"trading",
"forex",
"fxtrade",
"oanda"
],
"author": "Alberto Santini",
"license": "MIT",
"engines": {
"node": ">=8.11.1"
},
"dependencies": {
"async": "^2.6.1",
"body-parser": "^1.18.3",
"d3": "^5.5.0",
"document-register-element": "^1.9.1",
"express": "^4.16.3",
"faye-websocket": "^0.11.1",
"flic": "^1.3.7",
"https-proxy-agent": "^2.2.1",
"hyperhtml": "^2.10.13",
"introspected": "^0.2.5",
"limiter": "^1.1.3",
"tachyons": "^4.10.0",
"techan": "^0.8.0"
},
"optionalDependencies": {
"electron": "^2.0.2"
},
"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",
"rollup-d3": "rollup -c rollup.config.d3-techan.js && uglifyjs build/d3-techan.js -c -m -o build/d3-techan.min.js"
},
"devDependencies": {
"chai": "^4.1.2",
"conventional-changelog-cli": "^2.0.1",
"eslint": "^4.19.1",
"mocha": "^5.2.0",
"rollup": "^0.60.7",
"rollup-plugin-node-resolve": "^3.3.0",
"uglify-js": "^3.4.0"
}
}