-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.58 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.58 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
{
"name": "promptplace_be",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "dotenv -e .env.dev -- ts-node-dev --respawn --transpile-only src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"prebuild": "npm run generate:swagger",
"build": "tsc",
"tsoa:routes": "tsoa routes",
"tsoa:spec": "tsoa spec",
"tsoa:build": "npm run tsoa:routes && npm run tsoa:spec",
"generate:swagger": "ts-node src/scripts/generate-swagger.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@aws-sdk/client-s3": "^3.848.0",
"@aws-sdk/s3-request-presigner": "^3.848.0",
"@portone/server-sdk": "^0.19.0",
"@prisma/client": "^6.14.0",
"@types/express-session": "^1.18.2",
"@types/passport-google-oauth20": "^2.0.16",
"@types/passport-kakao": "^1.0.3",
"axios": "^1.11.0",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"body-parser": "^2.2.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"cors": "^2.8.5",
"dotenv": "^17.0.1",
"express": "^5.1.0",
"express-session": "^1.18.1",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"nodemailer": "^7.0.10",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"passport-kakao": "^1.0.1",
"passport-naver-v2": "^2.0.8",
"reflect-metadata": "^0.2.2",
"save-dev": "0.0.1-security",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"swagger": "^0.7.5",
"swagger-autogen": "^2.23.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-dist": "^5.27.1",
"swagger-ui-express": "^5.0.1",
"typedi": "^0.10.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/axios": "^0.14.4",
"@types/bcrypt": "^6.0.0",
"@types/bcryptjs": "^3.0.0",
"@types/body-parser": "^1.19.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/multer": "^2.0.0",
"@types/node": "^24.0.10",
"@types/nodemailer": "^7.0.3",
"@types/passport": "^1.0.17",
"@types/passport-jwt": "^4.0.1",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@types/uuid": "^10.0.0",
"dotenv-cli": "^11.0.0",
"nodemon": "^3.1.10",
"prisma": "^6.11.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsoa": "^6.6.0",
"tsx": "^4.21.0",
"typescript": "^5.8.3"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}