-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.42 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.42 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
{
"name": "@amzn/gen-ai-app-builder-on-aws-infrastructure",
"version": "3.0.6",
"bin": {
"infrastructure": "bin/gen-ai-app-builder.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest --coverage --silent --verbose",
"test-debug": "jest --coverage --runInBand",
"unit-test": "jest --coverage --silent --verbose --runInBand --testPathIgnorePatterns=integration",
"integ-test": "jest --coverage --silent --verbose --runInBand -- integration",
"cdk": "./node_modules/cdk/bin/cdk",
"clean": "rm -rf node_modules",
"code-linter": "./node_modules/eslint/bin/eslint.js . -c .eslintrc.js --ext .ts",
"code-formatter": "./node_modules/prettier/bin/prettier.cjs . --config ../.prettierrc.yml --ignore-path ../.prettierignore '**/*.{ts,json,css,md}' !**/*.js --write"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/mock-fs": "^4.13.4",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.16.0",
"jest": "^29.7.0",
"jsonschema": "^1.4.1",
"mock-fs": "^5.4.1",
"portfinder": "1.0.32",
"prettier": "^3.4.2",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@aws-cdk/aws-servicecatalogappregistry-alpha": "2.167.2-alpha.0",
"@aws-solutions-constructs/aws-apigateway-lambda": "^2.74.0",
"@aws-solutions-constructs/aws-apigatewayv2websocket-sqs": "^2.74.0",
"@aws-solutions-constructs/aws-cloudfront-s3": "^2.74.0",
"@aws-solutions-constructs/aws-lambda-dynamodb": "^2.74.0",
"@aws-solutions-constructs/aws-sqs-lambda": "^2.74.0",
"@aws-solutions-constructs/aws-wafwebacl-apigateway": "^2.74.0",
"@aws-solutions-constructs/core": "^2.74.0",
"@types/node": "^22.10.1",
"@types/npmlog": "^7.0.0",
"@types/uuid": "^10.0.0",
"aws-cdk": "^2.1024.0",
"aws-cdk-lib": "^2.193.0",
"cdk": "^2.193.0",
"cdk-nag": "^2.34.21",
"constructs": "^10.4.2",
"npmlog": "^7.0.1",
"source-map-support": "^0.5.21",
"uuid": "^10.0.0"
},
"exclude": [
"node_modules",
"cdk.out",
"dist"
],
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com/solutions"
},
"license": "Apache-2.0",
"description": "CDK app to deploy the application",
"repository": {
"type": "git",
"url": "https://github.com/aws-solutions/generative-ai-application-builder-on-aws"
}
}