-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1012 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1012 Bytes
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
{
"name": "hoopsquad-backend",
"version": "1.0.0",
"description": "HoopSquad 백엔드 서버",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"dev": "nodemon --watch './src/**/*.ts' --exec 'yarn start'"
},
"keywords": [],
"author": "MaiT-027",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.5.2",
"axios": "^1.6.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"expo-server-sdk": "^3.7.0",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"firebase": "^10.7.1",
"jsonwebtoken": "^9.0.2",
"mathjs": "^12.1.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.0.1",
"prisma": "^5.5.2",
"sanitize-filename": "^1.6.3",
"socket.io": "^4.7.2"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/express": "^4.17.19",
"@types/jsonwebtoken": "^9.0.4",
"@types/multer": "^1.4.10",
"@types/mysql": "^2.15.22"
}
}