-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.56 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.56 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
{
"name": "wearly-backend",
"version": "1.0.0",
"description": "Wearly 프로젝트 백엔드(API 서버) 레포지토리입니다. \r (서버 로직, 데이터베이스, API 제공을 담당합니다.)",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/app.ts",
"build": "tsc",
"start": "tsx src/app.ts",
"seed": "tsx prisma/seed.ts",
"seed:testuser": "tsx prisma/add.ts"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.22.0",
"@sendgrid/mail": "^8.1.6",
"@supabase/supabase-js": "^2.90.1",
"axios": "^1.13.4",
"bcrypt": "^6.0.0",
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"firebase-admin": "^13.6.1",
"form-data": "^4.0.5",
"google-auth-library": "^10.5.0",
"jsonwebtoken": "^9.0.3",
"multer": "^2.0.2",
"node-cron": "^4.2.1",
"node-fetch": "^2.7.0",
"nodemailer": "^7.0.12",
"openai": "^6.16.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"@types/node": "^25.0.5",
"@types/node-cron": "^3.0.11",
"@types/node-fetch": "^2.6.13",
"@types/nodemailer": "^7.0.5",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"prisma": "^5.22.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}