-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.05 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.05 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
{
"name": "@loopback/graphql",
"description": "LoopBack's graphql integration",
"version": "0.13.1",
"keywords": [
"LoopBack",
"GraphQL"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "IBM Corp. and LoopBack contributors",
"copyright.owner": "IBM Corp. and LoopBack contributors",
"repository": {
"type": "git",
"url": "https://github.com/loopbackio/loopback-next.git",
"directory": "extensions/graphql"
},
"engines": {
"node": "20 || 22 || 24"
},
"scripts": {
"acceptance": "lb-mocha \"dist/__tests__/acceptance/**/*.js\"",
"build": "lb-tsc",
"clean": "lb-clean loopback-graphql*.tgz dist *.tsbuildinfo package",
"pretest": "npm run build",
"integration": "lb-mocha \"dist/__tests__/integration/**/*.js\"",
"test": "lb-mocha \"dist/__tests__/**/*.js\"",
"unit": "lb-mocha \"dist/__tests__/unit/**/*.js\"",
"verify": "npm pack && tar xf loopback-graphql*.tgz && tree package && npm run clean"
},
"publishConfig": {
"access": "public"
},
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"peerDependencies": {
"@loopback/boot": "^8.0.1",
"@loopback/core": "^7.0.0",
"@loopback/rest": "^15.0.1"
},
"dependencies": {
"@apollo/server": "^4.13.0",
"@graphql-tools/utils": "^11.0.0",
"@loopback/http-server": "^7.0.10",
"body-parser": "^2.2.2",
"cors": "^2.8.6",
"debug": "^4.4.3",
"express": "^4.22.1",
"graphql": "^16.13.1",
"graphql-ws": "^5.16.2",
"type-graphql": "^2.0.0-rc.2",
"ws": "^8.20.0"
},
"devDependencies": {
"@graphql-yoga/subscription": "^5.0.5",
"@loopback/boot": "^8.0.11",
"@loopback/build": "^12.0.10",
"@loopback/core": "^7.0.10",
"@loopback/eslint-config": "^16.0.1",
"@loopback/repository": "^8.0.10",
"@loopback/rest": "^15.0.11",
"@loopback/testlab": "^8.0.10",
"@types/cors": "^2.8.19",
"@types/debug": "^4.1.13",
"@types/node": "^16.18.126",
"@types/ws": "^8.18.1",
"class-transformer": "^0.5.1"
}
}