Merge branch 'kimpen'
.env.development
0 → 100644
nodemon.json
0 → 100644
... | @@ -3,9 +3,11 @@ | ... | @@ -3,9 +3,11 @@ |
"version": "1.0.0", | "version": "1.0.0", | ||
"description": "영화 예매 사이트", | "description": "영화 예매 사이트", | ||
"main": "index.js", | "main": "index.js", | ||
"type": "module", | |||
"scripts": { | "scripts": { | ||
"start": "node dist/index.js", | |||
"test": "echo \"Error: no test specified\" && exit 1", | "test": "echo \"Error: no test specified\" && exit 1", | ||
"dev": "nodemon index.js" | "dev": "nodemon" | ||
}, | }, | ||
"repository": { | "repository": { | ||
"type": "git", | "type": "git", | ||
... | @@ -15,9 +17,13 @@ | ... | @@ -15,9 +17,13 @@ |
"license": "ISC", | "license": "ISC", | ||
"dependencies": { | "dependencies": { | ||
"bcryptjs": "^2.4.3", | "bcryptjs": "^2.4.3", | ||
"cookie-parser": "^1.4.5", | |||
"dotenv": "^10.0.0", | |||
"express": "^4.17.1", | "express": "^4.17.1", | ||
"jsonwebtoken": "^8.5.1", | "jsonwebtoken": "^8.5.1", | ||
"multer": "^1.4.2", | "multer": "^1.4.2", | ||
"pg": "^8.6.0", | |||
"pg-hstore": "^2.3.4", | |||
"sequelize": "^6.6.4" | "sequelize": "^6.6.4" | ||
}, | }, | ||
"devDependencies": { | "devDependencies": { | ||
... | ... |
server/app.js
0 → 100644
server/config/app.config.js
0 → 100644
server/config/db.config.js
0 → 100644
Please register or sign in to comment