-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.38 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
{
"name": "graphql-codegen-aws-cdk-appsync-resolver",
"version": "0.4.1",
"description": "generate aws-cdk appsync resolver from schema.graphql",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc",
"test": "tsc && graphql-codegen --config test/codegen.yml && jest"
},
"keywords": [
"graphql-codegen",
"aws-cdk",
"appsync"
],
"author": "Masahiro Onohara <masahirompp@gmail.com> (https://github.com/masahirompp)",
"license": "MIT",
"dependencies": {
"@graphql-codegen/plugin-helpers": "^1.17.8",
"@graphql-codegen/visitor-plugin-common": "^1.17.14"
},
"devDependencies": {
"@aws-cdk/assert": ">=1.60.0",
"@aws-cdk/aws-appsync": ">=1.60.0",
"@aws-cdk/aws-dynamodb": "^1.61.1",
"@aws-cdk/aws-lambda": ">=1.60.0",
"@aws-cdk/core": ">=1.60.0",
"@graphql-codegen/cli": "^1.17.8",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.2",
"graphql": "^15.3.0",
"jest": "^26.4.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/masahirompp/graphql-codegen-aws-cdk-appsync-resolver.git"
},
"bugs": {
"url": "https://github.com/masahirompp/graphql-codegen-aws-cdk-appsync-resolver/issues"
},
"homepage": "https://github.com/masahirompp/graphql-codegen-aws-cdk-appsync-resolver#readme"
}