Skip to content

Commit

Permalink
[BE][ENV] #196 : CORS ํ—ˆ์šฉ
Browse files Browse the repository at this point in the history
- CORS ํ—ˆ์šฉ
  • Loading branch information
happyhyep committed Nov 18, 2024
1 parent 049206a commit 87a2f1d
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 34 deletions.
69 changes: 35 additions & 34 deletions backend/package.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,35 @@
{
"name": "ddara-backend",
"private": true,
"workspaces": [
"frontend",
"backend"
],
"version": "0.0.0",
"type": "module",
"description": "๋”ฐ๋ผ๋”ฐ๋ผ์˜ ์„ ๋”ฐ๋ผ๊ธธ๋”ฐ๋ผ BackEnd ์ฝ”๋“œ",
"main": "index.js",
"scripts": {
"dev": "node src/index.js",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"lint": "pnpm lint-staged"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-validator": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^11.0.3",
"ws": "^8.11.0"
}
}
{
"name": "ddara-backend",
"private": true,
"workspaces": [
"frontend",
"backend"
],
"version": "0.0.0",
"type": "module",
"description": "๋”ฐ๋ผ๋”ฐ๋ผ์˜ ์„ ๋”ฐ๋ผ๊ธธ๋”ฐ๋ผ BackEnd ์ฝ”๋“œ",
"main": "index.js",
"scripts": {
"dev": "node src/index.js",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"lint": "pnpm lint-staged"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-validator": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^11.0.3",
"ws": "^8.11.0"
}
}
12 changes: 12 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 87a2f1d

Please sign in to comment.