-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
86 lines (84 loc) · 2.79 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
{
"name": "carbon-data-lake-sample-code",
"author": "AWS Carbon Data Lake Builder Team",
"version": "0.1.0",
"bin": {
"carbon-data-lake-sample-code": "bin/main.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"codegen": "graphql-codegen --config lib/codegen/codegen.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"dock": "aws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin public.ecr.aws",
"secure": "sh test-security.sh"
},
"browser": {
"child_process": false
},
"devDependencies": {
"@graphql-codegen/typescript": "^3.0.0",
"@types/edit-json-file": "^1.7.0",
"@types/express": "^4.17.17",
"@types/jest": "^26.0.10",
"@types/lodash": "^4.14.191",
"@types/node": "^18.13.0",
"@types/prettier": "<2.6.0",
"@types/swagger-ui-express": "^4.1.3",
"@types/tmp": "^0.2.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"aws-cdk": "^2.128.0",
"aws-cdk-lib": "^2.128.0",
"babel-eslint": "^10.1.0",
"esbuild": "^0.17.8",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@aws-amplify/appsync-modelgen-plugin": "^2.3.3",
"@aws-amplify/graphql-docs-generator": "^3.0.3",
"@aws-amplify/graphql-model-transformer": "^0.16.8",
"@aws-amplify/graphql-transformer-core": "^0.18.4",
"@aws-cdk/aws-amplify-alpha": "^2.21.0-alpha.0",
"@aws-cdk/aws-apigatewayv2-alpha": "^2.21.1-alpha.0",
"@aws-cdk/aws-apigatewayv2-integrations-alpha": "^2.21.1-alpha.0",
"@aws-cdk/aws-appsync-alpha": "^2.21.1-alpha.0",
"@aws-cdk/aws-cognito-identitypool-alpha": "^2.21.1-alpha.0",
"@awsui/collection-hooks": "^1.0.25",
"@awsui/components-react": "^3.0.490",
"@awsui/design-tokens": "^3.0.21",
"@awsui/global-styles": "^1.0.14",
"@awsui/test-utils-core": "^1.0.17",
"@types/aws-lambda": "^8.10.110",
"aws-cdk-exec": "^0.0.5",
"aws-sdk": "^2.1354.0",
"cdk-nag": "^2.22.37",
"child_process": "^1.0.2",
"constructs": "^10.0.0",
"edit-json-file": "^1.7.0",
"git-secrets": "^0.0.11",
"graphql": "^15",
"graphql-2-json-schema": "^0.10.0",
"node": "^16.17.0",
"replace-in-file": "^6.3.5",
"run": "^1.4.0",
"serverless-http": "^3.1.1",
"source-map-support": "^0.5.16",
"swagger-ui-express": "^4.6.1",
"tempy": "^3.0.0",
"tmp": "^0.2.1",
"typescript-json-schema": "^0.55.0",
"uuid": "^9.0.0"
}
}