-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.07 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.07 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
{
"name": "coffect-be",
"version": "1.0.0",
"description": "Coffect BackEnd Repository",
"main": "./dist/index.js",
"scripts": {
"build": "tsoa spec-and-routes && tsc",
"start": "npx prisma generate && npm run build && node ./dist/index.js",
"lint": "eslint src/**/*.ts --fix --ext .ts",
"prisma": "npx prisma generate --schema=prisma/mysql/schema.prisma && npx prisma generate --schema=prisma/mongodb/schema.prisma",
"dev": "npm run prisma && npm run lint && npm run build && nodemon --watch *.ts --exec ts-node src/index.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^6.10.1",
"@socket.io/admin-ui": "^0.5.1",
"aws-sdk": "^2.1692.0",
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.5.0",
"es-hangul": "^2.3.5",
"express": "^5.1.0",
"firebase": "^12.0.0",
"firebase-admin": "^13.4.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.18.0",
"morgan": "^1.10.0",
"multer": "^2.0.1",
"multer-s3": "^3.0.1",
"mysql2": "^3.14.1",
"node-cron": "^4.2.1",
"nodemon": "^3.1.10",
"prisma": "^6.10.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"swagger-autogen": "^2.23.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tsoa": "^6.6.0",
"tunnel-ssh": "^5.2.0",
"uuid": "^11.1.0",
"v4": "^0.0.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/multer-s3": "^3.0.3",
"@types/nodemailer": "^6.4.17",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.0",
"prettier": "^3.6.0",
"prisma-erd-generator": "^2.0.4",
"ts-node": "^10.9.2"
}
}