Skip to content
This repository has been archived by the owner on Jun 29, 2020. It is now read-only.

Commit

Permalink
Merge pull request #95 from YogiHa/initSocket
Browse files Browse the repository at this point in the history
initial backend
  • Loading branch information
ArnasDickus authored Dec 21, 2019
2 parents 87f79af + 4489697 commit b4b63e4
Show file tree
Hide file tree
Showing 21 changed files with 376 additions and 57 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
# dependencies
/node_modules
/package-lock.json
/server/node_modules
/server/package-lock.json
/.pnp
/.idea
.pnp.js
Expand Down
217 changes: 217 additions & 0 deletions package-lock.json

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

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"react-spring": "^8.0.27",
"redux": "^4.0.4",
"redux-firestore": "^0.9.0",
"redux-thunk": "^2.3.0"
"redux-thunk": "^2.3.0",
"socket.io-client": "^2.3.0"
},
"scripts": {
"start": "react-scripts start",
Expand Down
19 changes: 19 additions & 0 deletions server/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"socket.io": "^2.3.0"
},
"devDependencies": {
"nodemon": "^2.0.2"
}
}
Loading

0 comments on commit b4b63e4

Please sign in to comment.