-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.98 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.98 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
{
"name": "8-photo-be",
"version": "1.0.0",
"description": "최애의 포토 벡엔드 레포지토리 입니다.",
"type": "module",
"main": "src/app.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon --watch src --ext js --exec \"node src/app.js\"",
"start": "cross-env NODE_ENV=production node src/app.js",
"build": "echo \"JS 프로젝트라 build 단계 없음\"",
"lint": "eslint . --ext .js",
"format": "prettier --write \"**/*.{js,json,md}\"",
"postinstall": "prisma generate",
"seed": "prisma db seed",
"studio": "prisma studio"
},
"prisma": {
"schema": "src/prisma/schema.prisma",
"seed": "node src/prisma/seed.js"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FS-PART-3/8-PHOTO-BE.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FS-PART-3/8-PHOTO-BE/issues"
},
"homepage": "https://github.com/FS-PART-3/8-PHOTO-BE#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.910.0",
"@prisma/client": "6.15.0",
"bcrypt": "^6.0.0",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dayjs": "^1.11.18",
"dotenv": "^17.2.3",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"express": "^5.1.0",
"express-jwt": "^8.5.1",
"express-session": "^1.18.2",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"node-cron": "^4.2.1",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"pino": "^10.0.0",
"pino-pretty": "^13.1.2",
"prettier": "^3.6.2",
"prisma": "6.15.0",
"sharp": "^0.34.4",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^13.0.0",
"zod": "^4.1.12"
},
"devDependencies": {
"cross-env": "^10.1.0",
"nodemon": "^3.1.10"
}
}