├── client ├── App.jsx └── index.js ├── public ├── index.html └── styles.scss ├── server └── server.js ├── webpack.config.js ├── README.md ├── .gitignore ├── LICENSE └── package.json /client/App.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/styles.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # GitInvolved -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 GitInvolved 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gitinvolved", 3 | "version": "1.0.0", 4 | "description": "GitInvolved helps developers find and follow open source projects.", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/ronzhan/GitInvolved.git" 12 | }, 13 | "author": "", 14 | "license": "ISC", 15 | "bugs": { 16 | "url": "https://github.com/ronzhan/GitInvolved/issues" 17 | }, 18 | "homepage": "https://github.com/ronzhan/GitInvolved#readme", 19 | "dependencies": { 20 | "express": "^4.17.1", 21 | "mongoose": "^5.10.11", 22 | "react": "^17.0.1", 23 | "react-dom": "^17.0.1" 24 | }, 25 | "devDependencies": { 26 | "@babel/core": "^7.12.3", 27 | "@babel/preset-env": "^7.12.1", 28 | "@babel/preset-react": "^7.12.1", 29 | "babel-loader": "^8.1.0", 30 | "concurrently": "^5.3.0", 31 | "css-loader": "^5.0.0", 32 | "nodemon": "^2.0.6", 33 | "sass": "^1.27.0", 34 | "sass-loader": "^10.0.4", 35 | "style-loader": "^2.0.0", 36 | "webpack": "^5.3.0", 37 | "webpack-cli": "^4.1.0", 38 | "webpack-dev-server": "^3.11.0" 39 | } 40 | } 41 | --------------------------------------------------------------------------------