Merge branch 'room-api'
.env.development
0 → 100644
app.js
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
0 → 100644
models/index.js
0 → 100644
models/room.model.js
0 → 100644
models/user.model.js
0 → 100644
| ... | @@ -3,23 +3,36 @@ | ... | @@ -3,23 +3,36 @@ |
| "version": "1.0.0", | "version": "1.0.0", | ||
| "description": "Streaming Service", | "description": "Streaming Service", | ||
| "main": "index.js", | "main": "index.js", | ||
| "scripts": { | |||
| "start": "nodemon index.js", | |||
| "dev": "nodemon -r esm index.js", | |||
| "build": "tsc -p ." | |||
| }, | |||
| "repository": { | |||
| "type": "git", | |||
| "url": "https://compmath.korea.ac.kr/gitlab/research/bora_it.git" | |||
| }, | |||
| "keywords": [], | |||
| "author": "Chaerin Kim,", | |||
| "license": "ISC", | |||
| "dependencies": { | "dependencies": { | ||
| "bcryptjs": "^2.4.3", | "bcryptjs": "^2.4.3", | ||
| "cookie-parser": "^1.4.5", | "cookie-parser": "^1.4.5", | ||
| "cors": "2.8.5", | |||
| "dotenv": "^10.0.0", | "dotenv": "^10.0.0", | ||
| "express": "^4.17.1", | "esm": "^3.2.25", | ||
| "express": "4.17.1", | |||
| "http": "0.0.1-security", | |||
| "jsonwebtoken": "^8.5.1", | "jsonwebtoken": "^8.5.1", | ||
| "nodemon": "^2.0.7", | "nodemon": "^2.0.7", | ||
| "npm": "^7.18.1" | "pg": "^8.6.0", | ||
| }, | "pg-hstore": "^2.3.4", | ||
| "devDependencies": {}, | "postgres": "^1.0.2", | ||
| "scripts": { | "sequelize": "^6.6.5", | ||
| "test": "echo \"Error: no test specified\" && exit 1" | "socket.io": "2.3.0", | ||
| }, | "wrtc": "0.4.6" | ||
| "repository": { | |||
| "type": "git", | |||
| "url": "https://compmath.korea.ac.kr/gitlab/research/bora_it.git" | |||
| }, | }, | ||
| "author": "", | "devDependencies": { | ||
| "license": "ISC" | "nodemon": "2.0.7" | ||
| } | |||
| } | } |
routes/index.js
0 → 100644
Please register or sign in to comment