-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.43 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
47
48
49
50
51
52
53
54
55
56
{
"name": "baddit-express",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-ses": "^3.533.0",
"@prisma/client": "^5.10.2",
"bcrypt": "^5.1.1",
"cloudinary": "^1.41.3",
"connect-redis": "^7.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"express-session": "^1.18.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"randomstring": "^1.3.0",
"redis": "^4.6.13",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.25",
"@types/passport": "^1.0.16",
"@types/passport-local": "^1.0.38",
"@types/randomstring": "^1.1.12",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"nodemon": "^3.1.0",
"prisma": "^5.10.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
}
}