-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (64 loc) · 3.1 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "graphql-build-time-stitching",
"version": "0.0.1",
"description": "GraphQL Gateway that stitches different API schemas at build time",
"license": "ISC",
"scripts": {
"cleanup": "run-p -l cleanup:*",
"cleanup:graphql-service": "cd graphql-service && yarn cleanup",
"cleanup:open-api-service": "cd open-api-service && yarn cleanup",
"cleanup:stitching-gateway": "cd stitching-gateway && yarn cleanup",
"cleanup:mesh-gateway": "cd mesh-gateway && yarn cleanup",
"prettify": "run-s -l prettify:*",
"prettify:graphql-service": "cd graphql-service && yarn prettify",
"prettify:open-api-service": "cd open-api-service && yarn prettify",
"prettify:stitching-gateway": "cd stitching-gateway && yarn prettify",
"prettify:mesh-gateway": "cd stitching-gateway && yarn prettify",
"dependencies": "run-p -l dependencies:*",
"dependencies:graphql-service": "cd graphql-service && yarn dependencies",
"dependencies:open-api-service": "cd open-api-service && yarn dependencies",
"dependencies:stitching-gateway": "cd stitching-gateway && yarn dependencies",
"dependencies:mesh-gateway": "cd mesh-gateway && yarn dependencies",
"generated": "run-p -l generated:*",
"generated:graphql-service": "cd graphql-service && yarn generated",
"generated:open-api-service": "cd open-api-service && yarn generated",
"generated:mesh-gateway": "cd mesh-gateway && yarn generated",
"linting": "run-p -l linting:*",
"linting:graphql-service": "cd graphql-service && yarn linting",
"linting:open-api-service": "cd open-api-service && yarn linting",
"linting:stitching-gateway": "cd stitching-gateway && yarn linting",
"linting:mesh-gateway": "cd mesh-gateway && yarn linting",
"building": "run-p -l building:*",
"building:graphql-service": "cd graphql-service && yarn building",
"building:open-api-service": "cd open-api-service && yarn building",
"building:stitching-gateway": "cd stitching-gateway && yarn building",
"startup:services": "run-p -l startup:*-service",
"startup:graphql-service": "cd graphql-service && yarn startup",
"startup:open-api-service": "cd open-api-service && yarn startup",
"startup:stitching-gateway": "cd stitching-gateway && yarn startup",
"startup:mesh-gateway": "cd mesh-gateway && yarn startup",
"dev": "run-s -l dev:services dev:stitching-gateway",
"dev:services": "run-p -l dev:graphql-service dev:open-api-service",
"dev:graphql-service": "cd graphql-service && yarn dev",
"dev:open-api-service": "cd open-api-service && yarn dev",
"dev:stitching-gateway": "cd stitching-gateway && yarn dev",
"dev:stitching-mesh": "cd stitching-mesh && yarn dev"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}