서버 구축 중... 고칠거 많음...
.env.development
0 → 100644
client/src/apis/endpoints.js
0 → 100644
client/src/apis/room.api.js
0 → 100644
client/src/apis/user.api.js
0 → 100644
index.js
deleted
100644 → 0
... | @@ -4,17 +4,30 @@ | ... | @@ -4,17 +4,30 @@ |
"description": "Streaming Service", | "description": "Streaming Service", | ||
"main": "index.js", | "main": "index.js", | ||
"scripts": { | "scripts": { | ||
"start": "nodemon index.js", | "start": "nodemon server/index.js", | ||
"dev": "nodemon src/index.ts", | "dev": "nodemon -r esm server/index.js", | ||
"build": "tsc -p ." | "build": "tsc -p ." | ||
}, | }, | ||
"repository": { | |||
"type": "git", | |||
"url": "https://compmath.korea.ac.kr/gitlab/research/bora_it.git" | |||
}, | |||
"keywords": [], | "keywords": [], | ||
"author": "", | "author": "Chaerin Kim,", | ||
"license": "ISC", | "license": "ISC", | ||
"dependencies": { | "dependencies": { | ||
"bcryptjs": "^2.4.3", | |||
"cookie-parser": "^1.4.5", | |||
"cors": "2.8.5", | "cors": "2.8.5", | ||
"dotenv": "^10.0.0", | |||
"esm": "^3.2.25", | |||
"express": "4.17.1", | "express": "4.17.1", | ||
"http": "0.0.1-security", | "http": "0.0.1-security", | ||
"jsonwebtoken": "^8.5.1", | |||
"nodemon": "^2.0.7", | |||
"pg": "^8.6.0", | |||
"pg-hstore": "^2.3.4", | |||
"sequelize": "^6.6.5", | |||
"socket.io": "2.3.0", | "socket.io": "2.3.0", | ||
"wrtc": "0.4.6" | "wrtc": "0.4.6" | ||
}, | }, | ||
... | ... |
server/app.js
0 → 100644
server/config/app.config.js
0 → 100644
server/config/db.config.js
0 → 100644
server/db/index.js
0 → 100644
server/index.js
0 → 100644
server/models/room.model.js
0 → 100644
server/models/user.model.js
0 → 100644
server/routes/index.js
0 → 100644
server/routes/room.route.js
0 → 100644
server/routes/user.route.js
0 → 100644
Please register or sign in to comment