-
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) · 2.26 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.26 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": "backend",
"version": "1.0.0",
"description": "Check-Task",
"homepage": "https://github.com/check-task/backend#readme",
"bugs": {
"url": "https://github.com/check-task/backend/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/check-task/backend.git"
},
"license": "ISC",
"author": "",
"type": "module",
"main": "index.js",
"prisma": {
"seed": "node prisma/seed.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/index.js",
"dev": "nodemon -e js,json,prisma --exec \"prisma generate && node src/index.js\"",
"db:test": "node --input-type=module -e 'import { prisma } from \"./src/db.config.js\"; await prisma.$connect(); const r = await prisma.$queryRawUnsafe(\"SELECT 1 as ok\"); console.log(\"DB CONNECT OK\", r); await prisma.$disconnect();'",
"prisma:generate": "prisma generate",
"prisma:pull": "prisma db pull",
"prisma:push": "prisma db push",
"prisma:studio": "prisma studio",
"migrate:dev": "prisma migrate dev",
"migrate:deploy": "prisma migrate deploy",
"migrate:reset": "prisma migrate reset --force",
"migrate:status": "prisma migrate status",
"seed": "node prisma/seed.js"
},
"dependencies": {
"@prisma/adapter-mariadb": "^7.2.0",
"@prisma/client": "^7.2.0",
"axios": "^1.13.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dayjs": "^1.11.19",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-session": "^1.19.0",
"http-status-codes": "^2.3.0",
"ioredis": "^5.9.2",
"joi": "^18.0.2",
"jsonwebtoken": "^9.0.3",
"multer": "^2.0.2",
"multer-s3": "^3.0.1",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-kakao": "^1.0.1",
"path": "^0.12.7",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"swagger-autogen": "^2.23.7",
"swagger-ui-express": "^5.0.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.972.0",
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.2",
"@types/jsonwebtoken": "^9.0.10",
"@types/passport": "^1.0.17",
"@types/swagger-ui-express": "^4.1.8",
"@types/yamljs": "^0.2.34",
"nodemon": "^3.1.11",
"prisma": "^7.2.0"
}
}