npm install bcryptjs --save
비밀번호를 암호화하는 과정에서 salt를 사용하여 비밀번호가 같더라도 입력되는 값은 다르게 설정
user.repository
import * as bcrypt from 'bcryptjs';
const salt =await bcrypt.genSalt();
const hashhedPassword = await bcrypt.hash(password, salt);
const user = this.create({ email, password : hashhedPassword });