-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 904 Bytes
/
package.json
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
27
28
29
30
31
{
"name": "react-self-contained-services",
"version": "0.1.0",
"description": "This is a proof of concept of self contained services with a react frontend",
"license" : "GNU General Public License v3.0",
"config" : {
"port" : {
"webservice" : "9000",
"noteservice" : "9001",
"userservice" : "9002"
}
},
"scripts": {
"startWebService": "node webservice/WebService.js",
"startNoteService": "node noteservice/NoteService.js",
"startUserService": "node userservice/UserService.js"
},
"repository": {
"type": "git",
"url": "https://github.com/roughy/react-self-contained-services"
},
"bugs": {
"url": "https://github.com/roughy/react-self-contained-services/issues"
},
"homepage": "https://github.com/roughy/react-self-contained-services",
"private": true,
"dependencies": {
"express": "^4.13.4",
"path": "^0.12.7"
}
}