-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
32 lines (32 loc) · 1.05 KB
/
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
32
{
"name": "graphql-microservices",
"version": "1.0.0",
"description": "This project showcases, how one could set up a graphql server using a (mildy simplified) microservice architecture.",
"main": " ",
"scripts": {
"start:user": "cd ./service-user && npm run start",
"start:post": "cd ./service-post && npm run start",
"prestart:gateway": "wait-on tcp:3010 && wait-on tcp:3020",
"start:gateway": "cd ./service-gateway && npm run start",
"start": "run-p start:*",
"test": "jest",
"ci": "start-server-and-test start tcp:3000 test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kriswep/graphql-microservices.git"
},
"author": "Christoph Benjamin Weber",
"license": "MIT",
"bugs": {
"url": "https://github.com/kriswep/graphql-microservices/issues"
},
"homepage": "https://github.com/kriswep/graphql-microservices#readme",
"devDependencies": {
"isomorphic-fetch": "3.0.0",
"jest": "27.5.1",
"npm-run-all": "4.1.5",
"start-server-and-test": "1.14.0",
"wait-on": "6.0.1"
}
}