-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
81 lines (81 loc) · 2.12 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "moleculer-apollo-server",
"version": "0.3.8",
"description": "Apollo GraphQL server for Moleculer API Gateway",
"main": "index.js",
"scripts": {
"dev": "nodemon examples/index.js",
"ci": "jest --watch",
"test": "jest --coverage",
"ci:integration": "jest \"**/integration/**spec.js\" --watch",
"lint": "eslint --ext=.js src test",
"lint:fix": "eslint --fix --ext=.js src test",
"deps": "npm-check -u",
"postdeps": "npm test",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"graphql",
"apollo-server",
"apollo",
"moleculer",
"microservice",
"gateway"
],
"repository": {
"type": "git",
"url": "https://github.com/moleculerjs/moleculer-apollo-server.git"
},
"author": "MoleculerJS",
"license": "MIT",
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0",
"moleculer": "^0.13.0 || ^0.14.0"
},
"devDependencies": {
"benchmarkify": "^3.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-security": "^1.5.0",
"graphql": "^15.5.1",
"jest": "^27.4.7",
"jest-cli": "^27.4.7",
"moleculer": "^0.14.23",
"moleculer-repl": "^0.7.2",
"moleculer-web": "^0.10.4",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1"
},
"jest": {
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"rootDir": "./src",
"roots": [
"../test"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
},
"engines": {
"node": ">= 10.x.x"
},
"dependencies": {
"@apollographql/graphql-playground-html": "^1.6.29",
"@hapi/accept": "^3.2.4",
"@types/graphql-upload": "^8.0.11",
"apollo-server-core": "^2.22.2",
"dataloader": "^2.1.0",
"graphql-subscriptions": "^1.2.1",
"graphql-tools": "^7.0.5",
"graphql-upload": "^11.0.0",
"lodash": "^4.17.21",
"object-hash": "^2.2.0"
}
}