-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "multitab-server",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"build": "tsc -p .",
"predev": "prettier --write .",
"dev": "tsc-watch --onSuccess \"node dist/index.js\"",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@testcontainers/postgresql": "^10.16.0",
"@types/cors": "^2.8.17",
"@types/dotenv": "^6.1.1",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.1.0",
"drizzle-kit": "^0.30.1",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"tsc-watch": "^6.2.0",
"typescript": "^5.5.4",
"v4": "^0.0.1"
},
"dependencies": {
"@neondatabase/serverless": "^0.10.4",
"bullmq": "^5.26.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.38.3",
"express": "^4.21.2",
"ioredis": "^5.4.1",
"pg": "^8.13.1",
"prom-client": "^15.1.3",
"socket.io": "^4.7.5",
"supertest": "^7.0.0",
"winston": "^3.17.0",
"winston-transport": "^4.9.0"
}
}