forked from GonggakSim/Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.14 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.14 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
{
"name": "backend",
"type": "module",
"version": "1.0.0",
"description": "<img src=\"https://github.com/user-attachments/assets/81bbb2fa-eafd-4689-b84e-42a9b819c13a\" width=\"800\" height=\"450\"/>",
"main": "index.js",
"scripts": {
"prebuild": "npm install @esbuild/linux-x64",
"build": "tsx scripts/build.ts",
"postbuild": "cp package.json dist/",
"start": "node dist/index.cjs",
"api-docs": "swagger-cli bundle ./src/swagger/openapi.yaml --outfile build/swagger.yaml --type yaml",
"predev": "npm run api-docs",
"dev": "nodemon -e js,json,prisma,ts --exec \"prisma generate && tsx src/index.ts\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^6.3.1",
"@quixo3/prisma-session-store": "^3.1.13",
"autocannon": "^8.0.0",
"axios": "^1.7.9",
"bcryptjs": "^3.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-session": "^1.18.1",
"firebase-admin": "^13.0.2",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.12.0",
"mongoose": "^8.9.3",
"node-cron": "^3.0.3",
"openai": "^4.79.1",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-kakao": "^1.0.1",
"passport-naver": "^1.0.6",
"swagger-cli": "^4.0.4",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/axios": "^0.9.36",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.1",
"@types/jsonwebtoken": "^9.0.7",
"@types/node-cron": "^3.0.11",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.16",
"@types/passport-kakao": "^1.0.3",
"@types/passport-naver": "^1.0.4",
"@types/swagger-ui-express": "^4.1.7",
"@types/yamljs": "^0.2.34",
"esbuild": "^0.25.0",
"nodemon": "^3.1.9",
"prisma": "^6.3.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}