Front
{
"name": "noah",
"version": "0.1.0",
"private": true,
"dependencies": {
"@date-io/date-fns": "^3.0.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/lab": "^5.0.0-alpha.169",
"@mui/material": "^5.15.14",
"@mui/x-date-pickers": "^7.1.0",
"@mui/x-date-pickers-pro": "^7.1.0",
"@react-google-maps/api": "^2.19.3",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"aos": "^2.3.4",
"axios": "^1.6.8",
"date-fns": "^3.6.0",
"dayjs": "^1.11.10",
"firebase": "^10.9.0",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-datepicker": "^6.6.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.0.1",
"react-modal": "^3.16.1",
"react-rating": "^2.0.5",
"react-router-dom": "^6.22.3",
"react-scripts": "5.0.1",
"react-slick": "^0.30.2",
"react-spinners": "^0.13.8",
"slick-carousel": "^1.8.1",
"styled-components": "^6.1.8",
"web-vitals": "^2.1.4",
"workbox-background-sync": "^6.6.0",
"workbox-broadcast-update": "^6.6.0",
"workbox-cacheable-response": "^6.6.0",
"workbox-core": "^6.6.0",
"workbox-expiration": "^6.6.0",
"workbox-google-analytics": "^6.6.1",
"workbox-navigation-preload": "^6.6.0",
"workbox-precaching": "^6.6.0",
"workbox-range-requests": "^6.6.0",
"workbox-routing": "^6.6.0",
"workbox-strategies": "^6.6.0",
"workbox-streams": "^6.6.0",
"zustand": "^4.5.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
REACT_APP_FIREBASE_API_KEY = AIzaSyCmg0AVb7iGo0eyxGFvUU6AkXx9km_BCKY
REACT_APP_FIREBASE_AUTH_DOMAIN = noah-511a6.firebaseapp.com
REACT_APP_FIREBASE_PROJECT_ID = noah-511a6
REACT_APP_FIREBASE_STORAGE_BUCKET = noah-511a6.appspot.com
REACT_APP_FIREBASE_MESSAGINGSENDER_ID = 622848761229
REACT_APP_FIREBASE_APP_ID = 1:622848761229:web:d576d2283d09a007acb1c4
REACT_APP_FIREBASE_MEASUREMENT_ID = G-6C7TZ1CV3H
REACT_APP_FIREBASE_VAPID_KEY = BJgOtDxMam8Lgz5rymS0jRg7zLumFZb08u3zu4aUqn5nb1SX64H2XTbVI3HCYDsW8Wsq9O0BHS0qDgimohD3o8I
# REACT_APP_URL=https://j10b106.p.ssafy.io
REACT_APP_URL="<http://localhost:8080>"
REACT_APP_GOOGLE_API_KEY = AIzaSyDQuG0EPBRz632DtyOLTtopsQ97Uun8ybM
yml 파일
spring:
datasource:
url: jdbc:mysql://[IP주소]:[포트번호]/[데이터베이스명]?allowPublicKeyRetrieval=true&useSSL=true&serverTimezone=Asia/Seoul
username: [데이터베이스 사용자명]
password: [데이터베이스 비밀번호]
driver-class-name: com.mysql.cj.jdbc.Driver
jpa:
hibernate:
ddl-auto: create/update/validate [데이터베이스 생성 옵션]
properties:
hibernate:
show_sql: true [SQL 로그 출력]
format_sql: true [SQL 출력 포맷]
data:
redis:
host: [Redis IP주소]
port: [Redis 포트번호]
time-to-live: [Redis 캐시의 TTL(시간-살아있음)]
filter-path:
paths:
member: "/api/v1/member"
memberSocial: "/api/v1/member/social"
memberLogin: "/api/v1/member/login/**"
memberNickname: "/api/v1/member/nickname/**"
memberEmail: "/api/v1/member/email/**"
memberPasswordReset: "/api/v1/member/password-reset"
apiDocs: "/api-docs/**"
v2ApiDocs: "/v2/api-docs/**"
v3ApiDocs: "/v3/api-docs/**"
webjars: "/webjars/**"
swagger: "/swagger/**"
swaggerUi: "/swagger-ui/**"
swaggerConfig: "/swagger-config/**"
swaggerResources: "/swagger-resources/**"
exchangeRate: "/api/v1/exchange/rateinfo"
market: "api/v1/bank/qr/withdraw"
nonlogin: "/api/v1/Suggest/nonlogin"
# 비로그인 시에 사용해야하는 경로 인가 작업
jwt:
SECRET_KEY: [jwt 비밀 키]
ACCESS_TIME: [엑세스 토큰 유효시간]
REFRESH_TIME: [리프레시 토큰 유효시간]
spring:
mail:
host: smtp.gmail.com
port: 587
username: [보내는 사람 이메일]
password: [이메일 비밀번호]
properties:
mail:
smtp:
auth: true
starttls:
enable: true
required: true
connection-timeout: 5000
timeout: 5000
write timeout: 5000
auth-code-expiration-millis: 300000
schedule:
notify_pay: 0 0 9 ? * *
auto_pay: 0 0 10 ? * *
notify_exchange: 0 10 11 ? * *
# 스케줄러 속성
Server