-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.25 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "back",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"dev": "concurrently \"NODE_ENV=development nodemon -L\" \"NODE_ENV=development npx ts-node ./src/Queue/worker.ts\"",
"dev:windows": "concurrently \" nodemon -L\" \"npx ts-node ./src/Queue/worker.ts\"",
"build": "tsc",
"start": "concurrently \"node ./dist/app.js\" \"node ./dist/Queue/worker.js\"",
"test": "jest --detectOpenHandles --runInBand",
"test:local": "NODE_ENV=development jest",
"taze:local": "npx taze -r",
"taze:back": "npx taze major",
"taze:update": "npx taze major -w",
"taze:patch": "npx taze patch",
"compress:ubuntu": "sudo zip -r project.zip ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.8.2",
"bcryptjs": "^3.0.2",
"canvas": "^3.1.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"express-session": "^1.18.1",
"express-validator": "^7.2.1",
"fs-extra": "^11.3.0",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.12.1",
"morgan": "^1.10.0",
"multer": "1.4.5-lts.1",
"node-cache": "^5.1.2",
"nodemailer": "^6.10.1",
"openapi-types": "^12.1.3",
"paseto": "^3.1.4",
"puppeteer": "^24.4.0",
"request": "^2.88.2",
"socket.io": "^4.8.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.817.0",
"@mohamed-elrefai/tsconfigs": "^1.0.2",
"@neondatabase/serverless": "^1.0.2",
"@prisma/adapter-pg": "^7.3.0",
"@prisma/client": "^7.3.0",
"@prisma/extension-accelerate": "^3.0.1",
"@types/axios": "^0.14.4",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/crypto-js": "^4.2.2",
"@types/dotenv": "^8.2.3",
"@types/express": "^5.0.0",
"@types/express-rate-limit": "^6.0.2",
"@types/express-session": "^1.18.1",
"@types/express-useragent": "^1.0.5",
"@types/fs-extra": "^11.0.4",
"@types/helmet": "^4.0.0",
"@types/jsonwebtoken": "^9.0.9",
"@types/moment": "^2.13.0",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^22.13.10",
"@types/node-cache": "^4.2.5",
"@types/nodemailer": "^6.4.17",
"@types/pg": "^8.15.1",
"@types/puppeteer": "^7.0.4",
"@types/request": "^2.48.12",
"@types/request-ip": "^0.0.41",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@types/uuid": "^10.0.0",
"bullmq": "^5.67.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"concurrently": "^9.2.1",
"exceljs": "^4.4.0",
"express-useragent": "^1.0.15",
"googleapis": "^146.0.0",
"nodemon": "^3.1.9",
"pg": "^8.18.0",
"prisma": "^7.3.0",
"prom-client": "^15.1.3",
"querystring": "^0.2.1",
"redis": "^5.1.0",
"reflect-metadata": "^0.2.2",
"request-ip": "^3.3.0",
"sharp": "^0.34.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"taze": "^18.7.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}