-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.04 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
{
"name": "opl-api-gateway",
"version": "1.0.0",
"description": "Apollo Federation Gateway for Open Practice Library",
"main": "gateway.js",
"scripts": {
"start": "node gateway.js",
"test": "jest test/**/*.spec.js",
"lint": "eslint src/*.js src/**/*.js gateway.js --ignore-pattern **/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openpracticelibrary/opl-api-gateway.git"
},
"author": "Shahein Moussavi",
"bugs": {
"url": "https://github.com/openpracticelibrary/opl-api-gateway/issues"
},
"homepage": "https://github.com/openpracticelibrary/opl-api-gateway#readme",
"dependencies": {
"@apollo/gateway": "^0.15.0",
"apollo-server": "^2.14.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"graphql": "^15.0.0",
"prettier": "^2.0.5"
},
"devDependencies": {
"apollo-server-testing": "^2.13.1",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^26.0.1"
}
}