-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.39 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "16.20.2",
"npm": "8.19.4"
},
"scripts": {
"dev": "nodemon --watch src --ext ts --exec \"ts-node -T\" src/server.ts",
"build": "node src/build.js",
"start": "node dist/src/server.js",
"lint": "prettier --write .",
"postinstall": "prisma generate"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.22.0",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/ioredis": "^4.28.10",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/ms": "^2.1.0",
"@types/multer": "^1.4.12",
"@types/node": "^16.18.0",
"@types/node-fetch": "^2.6.12",
"@types/nodemailer": "^6.4.17",
"bcryptjs": "^2.4.3",
"bullmq": "^4.18.2",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"exceljs": "^4.4.0",
"express": "^4.21.2",
"express-list-routes": "^1.3.1",
"helmet": "^7.2.0",
"ioredis": "^5.7.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-fetch": "^2.7.0",
"nodemailer": "^7.0.12",
"prisma": "^5.22.0",
"typescript": "~4.9.5",
"zod": "^3.25.73"
},
"devDependencies": {
"nodemon": "^3.1.11",
"prettier": "^3.4.2",
"ts-node": "^10.9.2"
}
}