-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: remove
server
& move client codes to root
- Loading branch information
1 parent
514c2c4
commit a8cd488
Showing
64 changed files
with
3,273 additions
and
677 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,3 +1,26 @@ | ||
node_modules | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
.env | ||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
.env | ||
|
||
# misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
/dist |
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
File renamed without changes.
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 |
---|---|---|
@@ -1,39 +1,49 @@ | ||
{ | ||
"private": "true", | ||
"name": "facebook-clone", | ||
"version": "1.0.0", | ||
"description": "Facebook clone using React.js, Node.js, GraphQL & TypeScript", | ||
"main": "index.js", | ||
"scripts": { | ||
"postinstall": "husky install", | ||
"start:web": "yarn workspace facebook-clone-client dev", | ||
"start:server": "yarn workspace facebook-clone-server dev", | ||
"build:web": "yarn workspace facebook-clone-client build", | ||
"build:server": "yarn workspace facebook-clone-server build", | ||
"build:all": "yarn workspace facebook-clone-client build && yarn workspace facebook-clone-server build" | ||
"name": "facebook-ui-clone", | ||
"version": "0.1.0", | ||
"private": true, | ||
"type": "module", | ||
"dependencies": { | ||
"formik": "^2.2.9", | ||
"moment": "^2.29.2", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"react-icons": "^3.11.0", | ||
"react-router-dom": "^6.4.3", | ||
"yup": "^0.32.11" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/saifulshihab/facebook-clone.git" | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "tsc && vite build", | ||
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0", | ||
"preview": "vite preview", | ||
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|jsx|tsx|json)\"" | ||
}, | ||
"keywords": [ | ||
"react", | ||
"facebook-clone", | ||
"react-facebook-clone", | ||
"full-stack-facebook", | ||
"react-graphql-facebook-clone" | ||
"facebook", | ||
"tailwindcss", | ||
"react-facebook-clone" | ||
], | ||
"author": "Saiful Islam", | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/saifulshihab/facebook-clone/issues" | ||
}, | ||
"homepage": "https://github.com/saifulshihab/facebook-clone#readme", | ||
"devDependencies": { | ||
"@commitlint/cli": "^15.0.0", | ||
"@commitlint/config-conventional": "^15.0.0", | ||
"husky": "^7.0.4" | ||
}, | ||
"workspaces": [ | ||
"packages/**" | ||
] | ||
"@types/react": "^18.0.25", | ||
"@types/react-dom": "^18.0.9", | ||
"@types/react-router-dom": "^5.3.2", | ||
"@typescript-eslint/eslint-plugin": "^5.5.0", | ||
"@typescript-eslint/parser": "^5.5.0", | ||
"@vitejs/plugin-react": "^4.0.0", | ||
"autoprefixer": "^10.4.16", | ||
"eslint": "^8.38.0", | ||
"eslint-config-airbnb": "^19.0.4", | ||
"eslint-plugin-import": "^2.25.3", | ||
"eslint-plugin-jsx-a11y": "^6.5.1", | ||
"eslint-plugin-react": "^7.30.0", | ||
"eslint-plugin-react-hooks": "^4.6.0", | ||
"eslint-plugin-react-refresh": "^0.3.4", | ||
"postcss": "^8.4.31", | ||
"tailwindcss": "^3.3.3", | ||
"typescript": "^5.0.2", | ||
"vite": "^4.3.2" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.