-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.62 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
{
"name": "tda-wsjson-client",
"version": "0.10.2",
"description": "WebSocket client for the TD Ameritrade wsjson API",
"main": "dist/web.bundle.js",
"types": "dist/web.d.ts",
"exports": {
"./wsJsonServer": "./dist/server/wsJsonServer.js",
"./wsJsonClient": "./dist/client/wsJsonClient.js",
"./realWsJsonClient": "./dist/client/realWsJsonClient.js",
"./mockWsJsonClient": "./dist/client/mockWsJsonClient.js",
"./alertTypes": "./dist/client/types/alertTypes.js",
"./tdaWsJsonTypes": "./dist/client/tdaWsJsonTypes.js",
"./wsJsonClientAuth": "./dist/client/wsJsonClientAuth.js",
"./wsJsonClientProxy": "./dist/client/wsJsonClientProxy.js",
"./messageTypeHelpers": "./dist/client/messageTypeHelpers.js",
"./chartMessageHandler": "./dist/client/services/chartMessageHandler.js",
"./quotesMessageHandler": "./dist/client/services/quotesMessageHandler.js",
"./positionsMessageHandler": "./dist/client/services/positionsMessageHandler.js",
"./placeOrderMessageHandler": "./dist/client/services/placeOrderMessageHandler.js",
"./createAlertMessageHandler": "./dist/client/services/createAlertMessageHandler.js",
"./orderEventsMessageHandler": "./dist/client/services/orderEventsMessageHandler.js",
"./optionSeriesMessageHandler": "./dist/client/services/optionSeriesMessageHandler.js",
"./optionQuotesMessageHandler": "./dist/client/services/optionQuotesMessageHandler.js",
"./userPropertiesMessageHandler": "./dist/client/services/userPropertiesMessageHandler.js",
"./instrumentSearchMessageHandler": "./dist/client/services/instrumentSearchMessageHandler.js",
"./optionSeriesQuotesMessageHandler": "./dist/client/services/optionSeriesQuotesMessageHandler.js",
"./optionChainDetailsMessageHandler": "./dist/client/services/optionChainDetailsMessageHandler.js"
},
"scripts": {
"prepublish": "tsc -p tsconfig.json",
"build": "tsc -p tsconfig.json",
"prebundle": "yarn build",
"bundle": "esbuild dist/client/tdaWsJsonClient.js --bundle --outfile=dist/app.bundle.js --minify --sourcemap --target=es2020",
"check_prettier": "prettier --check .",
"lint": "eslint .",
"test": "yarn run jest",
"ci": "yarn check_prettier && yarn build && yarn lint && yarn test"
},
"dependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@badgateway/oauth2-client": "^2.2.0",
"@types/lodash": "^4.14.186",
"@types/node": "^20.3.0",
"debug": "^4.3.4",
"isomorphic-ws": "^5.0.0",
"lodash": "^4.17.21",
"obgen": "^0.5.1",
"prompts": "2.4.2",
"resolve": "1.22.4",
"ws": "^8.13.0"
},
"author": "Felipe Lima",
"license": "MIT",
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@types/debug": "^4.1.8",
"@types/jest": "^29.4.0",
"@types/node-fetch": "^2.6.4",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"dotenv": "^16.1.4",
"esbuild": "^0.18.0",
"eslint": "^8.42.0",
"eslint-plugin-flowtype": "^8.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.9.1",
"jest": "29.5.0",
"jest-circus": "^29.4.1",
"jest-resolve": "29.5.0",
"jest-watch-typeahead": "2.2.2",
"jest-websocket-mock": "^2.4.0",
"node-fetch": "^2.6.12",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
}
}