-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.94 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.94 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
{
"name": "aws-dynasync",
"description": "Create an AWS AppSync GraphQL Api and a DynamoDB datasource with a single command. Automate the building and provisioning of a GraphQL API using a single config file with AWS AppSync and Amazon DynamoDb to store the data. The entire process is controlled by a single config file that defines the data tables and GraphQl types to be used. Then using the AWS CDK all of the tables are created, all of the queries and mutations are generated, and all of the data sources connected to have a fully functioning API.",
"main": "lib/export.js",
"types": "lib/types/export.d.ts",
"version": "1.1.6",
"scripts": {
"test": "jest --ci --reporters=default --coverage \".*\\..*\"",
"watch": "jest --watch --ci --reporters=default --coverage \".*\\..*\"",
"build": "tsc --project tsconfig.build.json",
"test-build": "tsc --project tsconfig.test.json",
"integ": "npm run test-build && integ-runner",
"docs": "typedoc --plugin typedoc-plugin-markdown --plugin typedoc-github-wiki-theme src/export.ts --out wiki",
"postdocs": "cp .github/README.md ./wiki/Home.md"
},
"keywords": [
"AWS",
"appsync",
"dynamodb",
"api",
"graphql",
"schema",
"database",
"appsync-graphql-api"
],
"author": "sguggenh@amazon.com",
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/integ-runner": "^2.88.0-alpha.0",
"@aws-cdk/integ-tests-alpha": "^2.88.0-alpha.0",
"@types/jest": "^29.5.3",
"@types/node": "^17.0.35",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"typedoc": "^0.24.8",
"typedoc-github-wiki-theme": "^1.1.0",
"typedoc-plugin-markdown": "^3.15.4",
"typescript": "^4.8.4"
},
"dependencies": {
"@aws-cdk/aws-appsync-alpha": "^2.52.1-alpha.0",
"@types/node": "*",
"aws-cdk": "^2.88.0",
"aws-cdk-lib": "^2.88.0",
"constructs": "^10.2.69",
"typescript": "*"
},
"overrides": {
"constructs": "$constructs"
}
}