-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.43 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.43 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "real-time-notification-system",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"_moduleAliases": {
"@": "dist"
},
"scripts": {
"docker-postinstall": "prisma generate",
"start": "cross-env NODE_ENV=production node -r module-alias/register dist/index.js",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_ENV=development concurrently -k -n SERVER,WORKER -c green,blue \"nodemon --ext ts --exec ts-node -r tsconfig-paths/register -r module-alias/register src/index.ts\" \"nodemon --ext ts --exec ts-node -r tsconfig-paths/register -r module-alias/register src/workers/notificationWorker.ts\"",
"server": "nodemon --ext ts --exec ts-node -r tsconfig-paths/register -r module-alias/register src/index.ts",
"worker": "ts-node -r tsconfig-paths/register -r module-alias/register src/workers/notificationWorker.ts",
"worker:dev": "nodemon --ext ts --exec ts-node -r tsconfig-paths/register -r module-alias/register src/workers/notificationWorker.ts",
"prod:worker": "cross-env NODE_ENV=production node -r module-alias/register dist/workers/notificationWorker.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@bull-board/api": "^6.9.0",
"@bull-board/express": "^6.9.0",
"@prisma/client": "^6.5.0",
"@redis/client": "^1.5.8",
"@types/express": "^4.17.21",
"bcryptjs": "^3.0.2",
"bullmq": "^5.7.14",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-basic-auth": "^1.2.1",
"express-rate-limit": "^7.5.0",
"helmet": "^8.1.0",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"morgan": "^1.10.0",
"mysql2": "^3.14.0",
"redis": "^4.7.0",
"socket.io": "^4.8.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tsconfig-paths": "^4.2.0",
"ws": "^8.18.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/bcryptjs": "^3.0.0",
"@types/jsonwebtoken": "^9.0.9",
"@types/morgan": "^1.9.9",
"@types/node": "^22.13.16",
"@types/socket.io": "^3.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@types/ws": "^8.18.1",
"concurrently": "^9.1.2",
"nodemon": "^3.1.9",
"prisma": "^6.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}