-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.25 KB
/
package.json
File metadata and controls
46 lines (46 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
{
"name": "website-v3-backend",
"version": "1.0.0",
"description": "Repo for the backend of blockchainUNN's website",
"main": "./src/server.ts",
"scripts": {
"dev": "npx nodemon ./src/swagger/swagger.ts --ignore ./src/swagger/swagger-output.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.23",
"@types/jsonwebtoken": "^9.0.6",
"@types/multer": "^1.4.12",
"@types/node": "^22.5.2",
"@types/nodemailer": "^6.4.15",
"@types/pug": "^2.0.10",
"@types/swagger-ui-express": "^4.1.6",
"nodemon": "^3.1.4",
"prisma": "^5.19.1",
"swagger-autogen": "^2.23.7",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@prisma/client": "^5.19.1",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cloudinary": "^2.4.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"jsonwebtoken": "^9.0.2",
"juice": "^11.0.0",
"make-synchronous": "^1.0.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.15",
"pug": "^3.0.3",
"swagger-ui-express": "^5.0.1",
"zod": "^4.1.7"
}
}