-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f176c60
commit 459b26d
Showing
4 changed files
with
17,283 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"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", | ||
"ws": "^8.11.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
{ | ||
"name": "ddara-frontend", | ||
"private": true, | ||
"workspaces": [ | ||
"frontend", | ||
"backend" | ||
], | ||
"version": "0.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "tsc -b && vite build", | ||
"test": "vitest", | ||
"test:watch": "vitest --watch", | ||
"test:coverage": "vitest run --coverage", | ||
"lint": "pnpm lint-staged", | ||
"preview": "vite preview", | ||
"storybook": "storybook dev -p 6006", | ||
"build-storybook": "storybook build" | ||
}, | ||
"dependencies": { | ||
"@fontsource/pretendard": "^5.1.0", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
"react-icons": "^5.3.0", | ||
"react-router-dom": "^6.28.0" | ||
}, | ||
"devDependencies": { | ||
"@chromatic-com/storybook": "^3.2.2", | ||
"@eslint/js": "^9.13.0", | ||
"@storybook/addon-essentials": "^8.4.2", | ||
"@storybook/addon-interactions": "^8.4.2", | ||
"@storybook/addon-onboarding": "^8.4.2", | ||
"@storybook/blocks": "^8.4.2", | ||
"@storybook/react": "^8.4.2", | ||
"@storybook/react-vite": "^8.4.2", | ||
"@storybook/test": "^8.4.2", | ||
"@types/navermaps": "^3.7.8", | ||
"@types/react": "^18.3.12", | ||
"@types/react-dom": "^18.3.1", | ||
"@types/react-router-dom": "^5.3.3", | ||
"@vitejs/plugin-react-swc": "^3.5.0", | ||
"autoprefixer": "^10.4.20", | ||
"classnames": "^2.5.1", | ||
"eslint": "^9.13.0", | ||
"eslint-import-resolver-typescript": "^3.6.3", | ||
"eslint-plugin-react-hooks": "^5.0.0", | ||
"eslint-plugin-react-refresh": "^0.4.14", | ||
"eslint-plugin-storybook": "^0.11.0", | ||
"globals": "^15.11.0", | ||
"postcss": "^8.4.47", | ||
"storybook": "^8.4.2", | ||
"tailwindcss": "^3.4.14", | ||
"typescript": "~5.6.2", | ||
"typescript-eslint": "^8.11.0", | ||
"vite": "^5.4.10", | ||
"vite-tsconfig-paths": "^5.1.1" | ||
}, | ||
"eslintConfig": { | ||
"extends": [ | ||
"plugin:storybook/recommended" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
{ | ||
"name": "web28-ddara", | ||
"version": "0.0.0", | ||
"private": true, | ||
"description": "์ค์ฅ๋ ์ธต์ ์ํ ์ ๊ทผ์ฑ์ ๋ฐํ์ผ๋ก ํ ์์น ๊ธฐ๋ฐ ์๋น์ค", | ||
"scripts": { | ||
"prepare": "husky", | ||
"front": "pnpm --filter ddara-frontend dev", | ||
"backend": "pnpm --filter ddara-backend dev", | ||
"build": "pnpm --filter ddara-frontend build", | ||
"build:docusaurus": "pnpm --filter docusaurus build", | ||
"dev": "pnpm -r dev", | ||
"lint": "pnpm lint-staged", | ||
"test": "vitest", | ||
"test:watch": "vitest --watch", | ||
"test:coverage": "vitest run --coverage", | ||
"typedoc": "typedoc --options typedoc.json", | ||
"jsdoc": "jsdoc -c jsdoc.json" | ||
}, | ||
"workspaces": [ | ||
"frontend", | ||
"backend", | ||
"docs" | ||
], | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"dependencies": { | ||
"@eslint/eslintrc": "^3.1.0", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1" | ||
}, | ||
"devDependencies": { | ||
"@eslint/js": "^9.13.0", | ||
"@types/react": "^18.3.12", | ||
"@types/react-dom": "^18.3.1", | ||
"@typescript-eslint/eslint-plugin": "^8.13.0", | ||
"@typescript-eslint/parser": "^8.13.0", | ||
"@vitejs/plugin-react-swc": "^3.5.0", | ||
"eslint": "^9.14.0", | ||
"eslint-config-airbnb": "^19.0.4", | ||
"eslint-config-airbnb-base": "^15.0.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-import-resolver-typescript": "^3.6.3", | ||
"eslint-plugin-import": "^2.31.0", | ||
"eslint-plugin-jsx-a11y": "^6.10.2", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"eslint-plugin-react": "^7.37.2", | ||
"eslint-plugin-react-hooks": "^5.0.0", | ||
"eslint-plugin-react-refresh": "^0.4.14", | ||
"eslint-plugin-storybook": "^0.11.0", | ||
"globals": "^15.11.0", | ||
"husky": "^9.1.6", | ||
"jsdoc": "^4.0.4", | ||
"lint-staged": "^15.2.10", | ||
"prettier": "^3.3.3", | ||
"prettier-plugin-tailwindcss": "^0.6.8", | ||
"typedoc": "^0.26.11", | ||
"typescript": "~5.6.2", | ||
"typescript-eslint": "^8.11.0", | ||
"vitest": "^2.1.4" | ||
}, | ||
"lint-staged": { | ||
"**/*.{js,jsx,ts,tsx}": [ | ||
"eslint --fix", | ||
"git add" | ||
], | ||
"!docs/**/*.{js,jsx,ts,tsx}": "eslint --fix" | ||
} | ||
} |
Oops, something went wrong.