-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
93 lines (93 loc) · 2.56 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
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "graphql-lambda-subscriptions",
"version": "0.0.0-development",
"description": "Graphql-WS compatible Lambda Powered Subscriptions",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"engines": {
"node": "^14.13 || >=16"
},
"repository": "[email protected]:reconbot/graphql-lambda-subscriptions.git",
"homepage": "https://github.com/reconbot/graphql-lambda-subscriptions",
"scripts": {
"test": "mocha",
"build": "npm run clean && tsc -p tsconfig-build.json && rollup -c && node -r esbuild-register bundle-types",
"clean": "rm -rf dist-ts dist",
"docs": "typedoc --options typedoc.js lib/index.ts",
"format": "eslint lib/**/*.ts lib/*.ts --fix",
"lint": "tsc && eslint lib/**/*.ts lib/*.ts",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"keywords": [
"graphql",
"lambda",
"subscriptions",
"API Gateway",
"serverless",
"subscriptionless",
"AWS"
],
"license": "MIT",
"dependencies": {
"debug": "^4.3.2",
"streaming-iterables": "^7.0.0"
},
"peerDependencies": {
"aws-sdk": ">= 2.0.0",
"graphql": ">= 16.0.0"
},
"devDependencies": {
"@architect/functions": "github:architect/functions#reconbot/expose-websocket-api",
"@architect/sandbox": "5.9.4",
"@graphql-tools/schema": "10.0.11",
"@microsoft/api-extractor": "7.48.1",
"@types/architect__sandbox": "3.3.6",
"@types/aws-lambda": "8.10.147",
"@types/chai": "5.0.1",
"@types/chai-subset": "1.3.5",
"@types/debug": "4.1.12",
"@types/mocha": "10.0.10",
"@types/node": "18.19.47",
"@types/ws": "8.5.13",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"aggregate-error": "5.0.0",
"aws-sdk": "2.1692.0",
"chai": "5.1.2",
"chai-subset": "1.6.0",
"esbuild": "0.24.2",
"esbuild-register": "3.6.0",
"eslint": "8.57.1",
"eslint-plugin-mocha-no-only": "1.2.0",
"graphql": "16.10.0",
"graphql-ws": "5.16.0",
"inside-out-async": "2.0.2",
"mocha": "11.0.1",
"rollup": "4.29.1",
"rollup-plugin-node-resolve": "5.2.0",
"semantic-release": "24.2.1",
"typedoc": "0.25.13",
"typedoc-plugin-markdown": "4.0.3",
"typescript": "4.7.4",
"ws": "8.18.0"
},
"mocha": {
"bail": true,
"timeout": "100s",
"require": [
"esbuild-register",
"./lib/test/setup"
],
"spec": "lib/**/*-test.ts"
},
"release": {
"branches": [
"main"
]
}
}