We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6138fad commit 160bb14Copy full SHA for 160bb14
3 files changed
.gitignore
@@ -17,6 +17,7 @@
17
.env.development.local
18
.env.test.local
19
.env.production.local
20
+yarn.lock
21
22
npm-debug.log*
23
yarn-debug.log*
package.json
@@ -12,7 +12,9 @@
12
"socket.io-client": "^2.2.0"
13
},
14
"scripts": {
15
- "start": "react-scripts start",
+ "client": "react-scripts start",
16
+ "server": "nodemon server/server.js",
+ "start": "concurrently 'npm run client' 'npm run server'",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
0 commit comments