-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.25 KB
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
{
"name": "real_time_data_ingestion",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.ts",
"dev:worker": "npx ts-node src/workers/index.ts",
"build": "tsc",
"test": "echo \"No tests yet\" && exit 0",
"prepare": "husky",
"lint": "eslint src/",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"typecheck": "tsc --noEmit"
},
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/express": "^5.0.3",
"@types/node": "^24.5.2",
"@types/pg": "^8.15.5",
"@types/winston": "^2.4.4",
"eslint": "^9.36.0",
"husky": "^9.1.7",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.45.0"
},
"dependencies": {
"dotenv": "^17.2.3",
"express": "^5.1.0",
"globals": "^16.4.0",
"ioredis": "^5.7.0",
"pg": "^8.16.3",
"socket.io": "^4.8.1",
"winston": "^3.11.0",
"zod": "^4.1.9"
}
}