-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 874 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "project",
"version": "1.0.0",
"description": "In order to test our react app connected to a server, we need to run **two** servers:",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "cd front && npm install && cd .. && cd back && npm install && cd ..",
"server": "cd back && npm start",
"client": "cd front && npm start",
"start": "concurrently --kill-others-on-fail --names \"server client\" \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/coditech/socket-basics.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/coditech/socket-basics/issues"
},
"homepage": "https://github.com/coditech/socket-basics#readme",
"dependencies": {
"concurrently": "^3.5.1"
}
}