-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.01 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.01 KB
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
{
"name": "@apollosolutions/reference-architecture",
"license": "MIT",
"workspaces": [
"subgraphs/*",
"services/*",
"client",
"coprocessor"
],
"scripts": {
"update-lockfiles": "./scripts/update-lockfiles.sh",
"dev": "npm-run-all --parallel dev:*",
"dev:checkout": "PORT=4001 npm run dev -w subgraphs/checkout",
"dev:discovery": "PORT=4002 npm run dev -w subgraphs/discovery",
"dev:inventory": "PORT=4003 npm run dev -w subgraphs/inventory",
"dev:orders": "PORT=4004 npm run dev -w subgraphs/orders",
"dev:products": "PORT=4005 npm run dev -w subgraphs/products",
"dev:reviews": "PORT=4006 npm run dev -w subgraphs/reviews",
"dev:shipping": "PORT=4007 npm run dev -w subgraphs/shipping",
"dev:users": "PORT=4008 npm run dev -w subgraphs/users",
"dev:client": "npm run dev -w client",
"dev:coprocessor": "npm run dev -w coprocessor",
"dev:promotions-api": "PORT=4010 npm run dev -w promotions-api"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}