-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.08 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.08 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
73
74
75
76
{
"name": "playproof-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "tsoa spec-and-routes && tsc",
"dev": "concurrently \"nodemon src/server.ts\" \"npx tsoa spec-and-routes --watch\"",
"start": "node build/src/server.js",
"db:push": "prisma db push",
"db:seed": "prisma db seed",
"tsoa": "tsoa spec",
"tsoa:gen": "tsoa spec && tsoa routes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Playproof-Umc/Playproof-Backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Playproof-Umc/Playproof-Backend/issues"
},
"homepage": "https://github.com/Playproof-Umc/Playproof-Backend#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.965.0",
"@types/multer": "^2.0.0",
"bcrypt": "^6.0.0",
"body-parser": "^2.2.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"cookie-parser": "^1.4.7",
"coolsms-node-sdk": "^2.1.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"helmet": "^8.1.0",
"http-status-codes": "^2.3.0",
"jose": "^4.15.9",
"livekit-server-sdk": "^2.15.0",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"redis": "^5.10.0",
"reflect-metadata": "^0.2.2",
"socket.io": "^4.7.5",
"swagger-ui-express": "^5.0.1",
"tsoa": "^7.0.0-alpha.0",
"tsyringe": "^4.10.0",
"zod": "^4.2.1"
},
"devDependencies": {
"@prisma/client": "6.19.1",
"@types/bcrypt": "^6.0.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/morgan": "^1.9.10",
"@types/node": "^25.0.3",
"@types/swagger-ui-express": "^4.1.8",
"concurrently": "^9.2.1",
"jest": "^30.2.0",
"nodemon": "^3.1.11",
"prisma": "6.19.1",
"socket.io-client": "^4.8.3",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}