sdy

init commit

1 +{
2 + "presets": ["@babel/preset-env"]
3 +}
1 +# Auto detect text files and perform LF normalization
2 +* text=auto
1 +node_modules
2 +
3 +client/node_modules
4 +
5 +.env
6 +
1 +node_modules
This diff could not be displayed because it is too large.
1 +{
2 + "name": "client",
3 + "version": "0.1.0",
4 + "private": true,
5 + "dependencies": {
6 + "@testing-library/jest-dom": "^4.2.4",
7 + "@testing-library/react": "^9.3.2",
8 + "@testing-library/user-event": "^7.1.2",
9 + "react": "^16.13.1",
10 + "react-dom": "^16.13.1",
11 + "react-scripts": "3.4.1"
12 + },
13 + "scripts": {
14 + "start": "react-scripts start",
15 + "build": "react-scripts build",
16 + "test": "react-scripts test",
17 + "eject": "react-scripts eject"
18 + },
19 + "eslintConfig": {
20 + "extends": "react-app"
21 + },
22 + "browserslist": {
23 + "production": [
24 + ">0.2%",
25 + "not dead",
26 + "not op_mini all"
27 + ],
28 + "development": [
29 + "last 1 chrome version",
30 + "last 1 firefox version",
31 + "last 1 safari version"
32 + ]
33 + },
34 + "proxy":"http://localhost:5000"
35 +}
1 +<!DOCTYPE html>
2 +<html lang="en">
3 + <head>
4 + <meta charset="utf-8" />
5 + <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
6 + <meta name="viewport" content="width=device-width, initial-scale=1" />
7 + <meta name="theme-color" content="#000000" />
8 + <meta
9 + name="description"
10 + content="Web site created using create-react-app"
11 + />
12 + <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
13 +
14 + <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
15 +
16 + <title>COVID-19 Chat Bot</title>
17 + </head>
18 + <body>
19 + <noscript>You need to enable JavaScript to run this app.</noscript>
20 + <div id="root"></div>
21 +
22 + </body>
23 +</html>
1 +{
2 + "short_name": "React App",
3 + "name": "Create React App Sample",
4 + "icons": [
5 + {
6 + "src": "favicon.ico",
7 + "sizes": "64x64 32x32 24x24 16x16",
8 + "type": "image/x-icon"
9 + },
10 + {
11 + "src": "logo192.png",
12 + "type": "image/png",
13 + "sizes": "192x192"
14 + },
15 + {
16 + "src": "logo512.png",
17 + "type": "image/png",
18 + "sizes": "512x512"
19 + }
20 + ],
21 + "start_url": ".",
22 + "display": "standalone",
23 + "theme_color": "#000000",
24 + "background_color": "#ffffff"
25 +}
1 +# https://www.robotstxt.org/robotstxt.html
2 +User-agent: *
3 +Disallow:
This diff could not be displayed because it is too large.
1 +{
2 + "name": "corona-chat-bot",
3 + "version": "1.0.0",
4 + "description": "corona chatbot information",
5 + "main": "server.js",
6 + "scripts": {
7 + "start": "node server",
8 + "server": "nodemon server",
9 + "client": "npm start --prefix client",
10 + "dev": "concurrently \"npm run server\" \"npm run client \""
11 + },
12 + "author": "sdy",
13 + "license": "ISC",
14 + "dependencies": {
15 + "axios": "^0.19.2",
16 + "dotenv": "^8.2.0",
17 + "express": "^4.17.1",
18 + "ibm-watson": "^5.5.0",
19 + "react-redux": "^7.2.0",
20 + "redux": "^4.0.5",
21 + "redux-devtools-extension": "^2.13.8",
22 + "redux-thunk": "^2.3.0"
23 + },
24 + "devDependencies": {
25 + "@babel/cli": "^7.14.3",
26 + "@babel/core": "^7.14.3",
27 + "@babel/preset-env": "^7.14.4",
28 + "concurrently": "^5.2.0",
29 + "nodemon": "^2.0.4"
30 + }
31 +}