forked from obrien-k/bigcommerce-apollo-hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.75 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
{
"name": "stellar",
"version": "0.0.3",
"description": "Apollo Federation BigCommerce OS supergraph",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "concurrently \"npm run server\" \"node ./server/subgraph-storefront/index\" \"node ./server/subgraph-products/index\" \"node ./server/subgraph-storeLogs/index\"",
"server": "node ./server",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\" \"node ./server/subgraph-storefront/index\" \"node ./server/subgraph-products/index\" \"node ./server/subgraph-storeLogs/index\"",
"prod": "node ./server",
"compose-schema": "rover supergraph compose --config ./server/supergraph-config.yaml > ./server/supergraph.graphql",
"storefront-subgraph-publish": "rover subgraph publish Storefront@dev --name storefront --schema ./server/subgraph-storefront/storefront.graphql --routing-url http://localhost:4001"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orphic-inc/stellar.git"
},
"keywords": [
"bigcommerce",
"apollo",
"federation",
"bighackathon"
],
"author": "Kyle O'Brien",
"license": "MIT",
"bugs": {
"url": "https://github.com/orphic-inc/stellar/issues"
},
"homepage": "https://github.com/orphic-inc/stellar#readme",
"dependencies": {
"@apollo/gateway": "^2.0.5",
"@apollo/subgraph": "^2.0.5",
"apollo-client": "^2.6.10",
"apollo-datasource-graphql": "^1.3.2",
"apollo-datasource-rest": "^3.6.1",
"apollo-server": "^3.9.0",
"bcrypt": "^5.0.1",
"concurrently": "^7.3.0",
"dotenv": "^16.0.1",
"graphql": "^16.6.0"
},
"devDependencies": {
"@bigcommerce/stencil-cli": "^5.2.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.19"
}
}