forked from michalkvasnicak/aws-lambda-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.1 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
80
81
82
83
84
85
86
{
"name": "aws-lambda-graphql",
"version": "0.0.14",
"homepage": "https://github.com/michalkvasnicak/aws-lambda-graphql/tree/master/packages/aws-lambda-graphql",
"bugs": {
"url": "https://github.com/michalkvasnicak/aws-lambda-graphql/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/michalkvasnicak/aws-lambda-graphql"
},
"engines": {
"node": ">10.0.0"
},
"main": "dist/index.js",
"types": "src/index.ts",
"files": [
"dist/",
"src/"
],
"sideEffects": false,
"keywords": [
"apollo",
"aws",
"lambda",
"apollo",
"graphql",
"subscriptions",
"apigateway",
"websocket",
"http",
"graphql-subscriptions",
"serverless"
],
"scripts": {
"build": "tsc",
"lint": "eslint src/ --ext .js,.ts"
},
"dependencies": {
"@aws-sdk/client-apigatewaymanagementapi": "^3.332.0",
"@aws-sdk/client-dynamodb": "^3.332.0",
"@aws-sdk/client-sqs": "^3.332.0",
"@aws-sdk/lib-dynamodb": "^3.332.0",
"@aws-sdk/util-dynamodb": "^3.332.0",
"@graphql-tools/schema": "^8.3.1",
"@graphql-tools/utils": "^8.5.5",
"apollo-server-lambda": "^3.6.1",
"graphql": "^14.x || ^15.x",
"graphql-subscriptions": "^1.0.0",
"ulid": "^2.3.0"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.332.0",
"graphql": "^14.x || ^15.x",
"graphql-subscriptions": "^1.0.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.77",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"aws-lambda": "^1.0.6",
"eslint": "^7.20.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-promise": "^4.3.1",
"jest": "^27.4.5",
"jest-junit": "^13.0.0",
"ts-jest": "^27.1.2",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testResultsProcessor": "jest-junit",
"globals": {
"ts-jest": {
"isolatedModules": true
}
}
},
"jest-junit": {
"outputDirectory": "./test-results"
}
}