-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.98 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.98 KB
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
{
"name": "moleculer-apollo-server",
"version": "0.4.1",
"description": "Apollo GraphQL server for Moleculer API Gateway",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"dev": "nodemon --inspect examples/index.js",
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "eslint --ext=.js src test",
"lint:fix": "eslint --fix --ext=.js src test",
"deps": "ncu -i --format group",
"postdeps": "npm test",
"typecheck": "tsc --project tsconfig.json",
"test:ts": "tsc --project test/typescript/tsconfig.json && tsx test/typescript/index.ts"
},
"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": "^16.0.0",
"moleculer": "^0.14.0 || ^0.15.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"graphql": "^16.13.2",
"jest": "^30.3.0",
"jest-cli": "^30.3.0",
"moleculer": "^0.15.0",
"moleculer-repl": "^0.8.0",
"moleculer-web": "^0.11.0",
"nodemon": "^3.1.14",
"npm-check-updates": "^19.6.6",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"jest": {
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"rootDir": "./src",
"roots": [
"../test"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
},
"engines": {
"node": ">= 20.x.x"
},
"dependencies": {
"@apollo/server": "^5.5.0",
"@graphql-tools/schema": "^10.0.31",
"dataloader": "^2.2.3",
"graphql-subscriptions": "^3.0.0",
"graphql-ws": "^6.0.8",
"lodash": "^4.17.23",
"object-hash": "^3.0.0",
"ws": "^8.20.0"
}
}