forked from Gusto/apollo-federation-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.39 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
{
"name": "apollo-federation-ruby",
"private": true,
"main": "index.js",
"license": "MIT",
"scripts": {
"circle:execute": "circleci config process ./.circleci/config.yml > .circleci/processed-config.yml && circleci local execute -c .circleci/processed-config.yml --job",
"start-gateway": "nodemon --delay 2 ./example/gateway.js",
"start-service-accounts": "nodemon --exec \"bundle exec ruby\" ./example/accounts.rb",
"start-service-reviews": "nodemon --exec \"bundle exec ruby\" ./example/reviews.rb",
"start-service-products": "nodemon --exec \"bundle exec ruby\" ./example/products.rb",
"start-service-inventory": "nodemon --exec \"bundle exec ruby\" ./example/inventory.rb",
"start-services": "concurrently \"npm:start-service-*\"",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"@apollo/gateway": "0.6.6",
"apollo-server": "2.6.3",
"graphql": "14.3.1"
},
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/preset-env": "7.4.5",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/exec": "^3.3.5",
"@semantic-release/git": "^7.0.16",
"apollo-server-core": "2.6.3",
"apollo-server-testing": "2.6.3",
"babel-jest": "24.8.0",
"concurrently": "4.1.0",
"eslint-config-gusto": "^9.5.1",
"graphql-tag": "2.10.1",
"jest": "24.8.0",
"nodemon": "1.19.1",
"semantic-release": "^15.13.19"
}
}