-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 920 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 920 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
37
38
39
40
{
"name": "pulsestream",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.9.3",
"@types/pg": "^8.20.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.61.0",
"@typescript-eslint/parser": "^8.61.0",
"eslint": "^10.4.1",
"prettier": "^3.8.4",
"ts-node": "^10.9.2",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
},
"dependencies": {
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"ioredis": "^5.11.1",
"kafkajs": "^2.2.4",
"pg": "^8.21.0",
"prom-client": "^15.1.3",
"ws": "^8.21.0",
"zod": "^4.4.3"
}
}