express server 설정
.gitignore
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
... | @@ -3,8 +3,10 @@ | ... | @@ -3,8 +3,10 @@ |
"version": "1.0.0", | "version": "1.0.0", | ||
"description": "KU 일정관리 앱", | "description": "KU 일정관리 앱", | ||
"main": "index.js", | "main": "index.js", | ||
"type": "module", | |||
"scripts": { | "scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | "test": "echo \"Error: no test specified\" && exit 1", | ||
"dev": "nodemon ./server/index.js" | |||
}, | }, | ||
"repository": { | "repository": { | ||
"type": "git", | "type": "git", | ||
... | @@ -16,5 +18,17 @@ | ... | @@ -16,5 +18,17 @@ |
"학사일정" | "학사일정" | ||
], | ], | ||
"author": "김수빈, 최가영", | "author": "김수빈, 최가영", | ||
"license": "ISC" | "license": "ISC", | ||
"dependencies": { | |||
"bcryptjs": "^2.4.3", | |||
"dotenv": "^10.0.0", | |||
"express": "^4.17.1", | |||
"jsonwebtoken": "^8.5.1", | |||
"pg": "^8.7.1", | |||
"pg-hstore": "^2.3.4", | |||
"sequelize": "^6.6.5" | |||
}, | |||
"devDependencies": { | |||
"nodemon": "^2.0.13" | |||
} | |||
} | } |
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
Please register or sign in to comment