-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (36 loc) · 821 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (36 loc) · 821 Bytes
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
{
"name": "stocks-watch",
"version": "1.0.0",
"description": "Real-time stock pattern scanner with Polygon.io websocket integration",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"watch": "ts-node src/index.ts"
},
"keywords": [
"stocks",
"trading",
"pattern-scanner",
"polygon",
"websocket",
"real-time"
],
"author": "",
"license": "MIT",
"private": true,
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.5",
"@types/ws": "^8.18.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}