-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.49 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.49 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
{
"name": "commit",
"type": "module",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon -e js,json,prisma --exec \"prisma generate && node src/index.js\"",
"lint": "eslint .",
"test": "echo \"No tests yet\" && exit 0"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@aws-sdk/client-s3": "^3.864.0",
"@aws-sdk/s3-request-presigner": "^3.862.0",
"@prisma/client": "^6.11.1",
"@quixo3/prisma-session-store": "^3.1.13",
"axios": "^1.10.0",
"body-parser": "^2.2.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"ejs": "^3.1.10",
"express": "^5.1.0",
"express-session": "^1.18.1",
"firebase-admin": "^13.4.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.16.3",
"multer": "^2.0.1",
"oauth20": "^3.0.0",
"passport": "^0.7.0",
"passport-google": "^0.1.0",
"passport-google-oauth20": "^2.0.0",
"passport-kakao": "^1.0.1",
"passport-naver": "^1.0.6",
"passport-twitter": "^0.1.5",
"prisma": "^6.10.1",
"pug": "^3.0.3",
"socket.io": "^4.8.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"eslint": "^9.32.0",
"globals": "^16.3.0",
"nodemon": "^3.1.10"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"overrides": {
"axios": "^1.10.0"
}
}