-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.66 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
{
"name": "sino",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"lint": "eslint src/**",
"build": "npx prisma validate && npx prisma generate && npm run lint",
"prisma:db-pull": "prisma db pull",
"prisma:studio": "prisma studio",
"db:gen": "prisma generate",
"db:mig": "prisma migrate dev",
"db:push": "prisma db push",
"db:seed": "prisma db seed"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.955.0",
"@prisma/client": "^6.15.0",
"axios": "^1.13.2",
"badwords-ko": "^1.0.4",
"bcrypt": "^6.0.0",
"bullmq": "^5.67.2",
"cors": "^2.8.5",
"dayjs": "^1.11.19",
"dotenv": "^16.6.1",
"express": "^4.19.2",
"express-session": "^1.18.2",
"groq-sdk": "^0.37.0",
"http-status-codes": "^2.3.0",
"ioredis": "^5.9.2",
"jsonwebtoken": "^9.0.3",
"leo-profanity": "^1.8.0",
"morgan": "^1.10.0",
"multer": "^2.0.2",
"mysql2": "^3.11.0",
"node-cron": "^4.2.1",
"nodemailer": "^7.0.12",
"oci-common": "^2.123.0",
"oci-objectstorage": "^2.123.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"redis": "^5.10.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^13.0.0",
"web-push": "^3.6.7",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.32.0",
"nodemon": "^3.1.4",
"prisma": "^6.15.0"
}
}