-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.36 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
{
"name": "tos-wsjson-client",
"version": "0.11.0",
"description": "WebSocket client for the Thinkorswim wsjson websocket API",
"main": "dist/web.bundle.js",
"types": "dist/web.d.ts",
"type": "module",
"exports": {
".": "./dist/index.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": "jest",
"ci": "yarn check_prettier && yarn build && yarn lint && yarn test"
},
"dependencies": {
"debug": "^4.3.4",
"fast-json-patch": "^3.1.1",
"isomorphic-ws": "^5.0.0",
"lodash-es": "^4.17.21",
"obgen": "^0.5.2",
"prompts": "2.4.2",
"puppeteer": "^24.2.1",
"resolve": "1.22.4",
"ws": "^8.17.0"
},
"author": "Felipe Lima",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/debug": "^4.1.8",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.186",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.3.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.7.0",
"jest-watch-typeahead": "2.2.2",
"jest-websocket-mock": "^2.4.0",
"node-fetch": "^2.6.12",
"prettier": "^2.4.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"ts-node": "^10.4.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}