-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
39 lines (39 loc) · 1.43 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": "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": "^2.4.1",
"@apollo/server": "^4.7.4",
"graphql": "^16.6.0"
},
"devDependencies": {
"@babel/core": "^7.10.1",
"@babel/preset-env": "^7.10.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"babel-jest": "^26.0.1",
"concurrently": "4.1.0",
"eslint-config-gusto": "^10.1.0",
"graphql-tag": "^2.10.3",
"jest": "^26.0.1",
"minimist": "^1.2.6",
"nodemon": "^2.0.4",
"semantic-release": "^19.0.3",
"semantic-release-rubygem": "^1.0.3",
"yargs-parser": "^21.0.1"
}
}