-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
134 lines (134 loc) · 3.86 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "td-algorithmic-trading-in-angular",
"version": "1.0.0",
"license": "MIT",
"main": "server/app.js",
"scripts": {
"ng": "ng",
"serve": "pm2 start ecosystem.config.js",
"build:all": "ng build --aot && npm run build-ts",
"build": "npm run build-ts",
"build:server": "npm run build-ts",
"build:ui": "ng build --aot",
"start": "node dist/app.js",
"test-server": "npm run build-ts && node server-tests.js",
"test": "ng test",
"e2e": "ng e2e",
"postinstall": "npm run build",
"build-ts": "tsc -p ./server/tsconfig.json",
"watch-ts": "tsc -p ./server/tsconfig.json -w",
"lint": "npm run tslint && npm run lintfix",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"lintfix": "tslint --fix -c tslint.json -p tsconfig.json",
"deploy": "copyfiles package.json dist && copyfiles app.yaml dist && cd dist && gcloud app deploy"
},
"private": true,
"dependencies": {
"@angular/animations": "^11.2.14",
"@angular/cdk": "^11.2.13",
"@angular/common": "^11.2.14",
"@angular/compiler": "^11.2.14",
"@angular/core": "^11.2.14",
"@angular/forms": "^11.2.14",
"@angular/material": "^11.2.13",
"@angular/platform-browser": "^11.2.14",
"@angular/platform-browser-dynamic": "^11.2.14",
"@angular/router": "^11.2.14",
"@fullcalendar/core": "^6.1.7",
"@types/jquery": "^3.3.29",
"@types/lodash": "^4.14.109",
"ajv": "^5.5.2",
"algebra.js": "^0.2.6",
"algotrader": "^1.3.1",
"angular-highcharts": "11.4.0",
"axios": "^0.21.1",
"body-parser": "^1.18.2",
"boom": "^6.0.0",
"chart.js": "^2.9.4",
"compression": "^1.7.1",
"cookie-parser": "^1.4.3",
"core-js": "^2.6.1",
"crc": "^4.3.2",
"d3fc-financial-feed": "^3.0.0",
"elliptic": "^6.5.4",
"errorhandler": "^1.5.0",
"errors": "^0.3.0",
"eslint": "^6.8.0",
"express": "^4.17.3",
"feedparser": "^2.2.7",
"file-saver": "^1.3.3",
"hammerjs": "^2.0.8",
"highcharts": "6.2.0",
"jquery": "^3.5.0",
"json2csv": "^3.11.5",
"lodash": "4.17.21",
"mathjs": "^3.18.0",
"method-override": "^2.3.10",
"moment": "^2.23.0",
"moment-timezone": "^0.5.35",
"morgan": "^1.9.0",
"ngx-bootstrap": "^4.1.1",
"path": "^0.12.7",
"pm2": "^5.3.0",
"primeflex": "2.0.0",
"primeicons": "^6.0.1",
"primeng": "11.4.5",
"qs": "^6.5.1",
"quill": "^1.3.7",
"request-promise": "^4.2.4",
"robinhood": "1.1.2",
"robinhood-api": "1.2.3",
"rxjs": "^6.6.7",
"rxjs-compat": "^6.6.7",
"serve-favicon": "^2.4.5",
"string": "^3.3.3",
"tslib": "^1.10.0",
"tulind": "^0.8.15",
"twilio": "^3.50.0",
"websocket-extensions": "^0.1.4",
"xlsx": "^0.18.5",
"y18n": "^4.0.1",
"yahoo-finance-data": "^3.2.0",
"zone.js": "^0.11.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.19",
"@angular/cli": "^11.2.19",
"@angular/compiler-cli": "^11.2.14",
"@angular/language-service": "^11.2.14",
"@types/jasmine": "~2.5.53",
"@types/jasminewd2": "~2.0.2",
"@types/moment": "^2.13.0",
"@types/node": "^14.14.16",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"copyfiles": "^2.4.1",
"jasmine": "^3.5.0",
"jasmine-core": "^2.99.1",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^6.4.2",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "^2.0.5",
"karma-jasmine": "^1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"nodemon": "^1.14.1",
"protractor": "^7.0.0",
"ts-node": "^3.3.0",
"tslint": "^6.1.3",
"typescript": "4.1.5"
},
"engines": {
"node": "16.20.0"
},
"babel": {
"presets": [
"env",
"es2016",
"stage-2"
]
}
}