-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.55 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
{
"name": "marstronaut",
"version": "0.0.2",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently \"npm run server\" \"npm run client\" \"node ./server/subgraph-accounts/index\" \"node ./server/subgraph-nasa/index\" \"node ./server/subgraph-xkcd/index\" ",
"server": "node ./server",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\" \"node ./server/subgraph-accounts/index\" \"node ./server/subgraph-nasa/index\" \"node ./server/subgraph-xkcd/index\" ",
"prod": "node ./server",
"compose-schema": "rover supergraph compose --config ./server/supergraph-config.yaml > ./server/supergraph.graphql",
"accounts-subgraph-publish": "rover subgraph publish Marstronaut@dev --name accounts --schema ./server/subgraph-accounts/accounts.graphql --routing-url http://localhost:4003"
},
"repository": {
"type": "git",
"url": "git+https://github.com/obrien-k/marstronaut-federation.git"
},
"author": "Kyle OBrien",
"license": "MIT",
"bugs": {
"url": "https://github.com/obrien-k/marstronaut-federation/issues"
},
"homepage": "https://github.com/obrien-k/marstronaut-federation#readme",
"dependencies": {
"@apollo/gateway": "^2.0.5",
"@apollo/subgraph": "^2.0.5",
"apollo-datasource-rest": "^3.6.1",
"apollo-server": "^3.9.0",
"axios": "^0.27.2",
"concurrently": "^7.3.0",
"dotenv": "^16.0.1",
"graphql": "^16.5.0"
},
"devDependencies": {
"nodemon": "^2.0.19"
}
}