-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.16 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.16 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
{
"name": "@aws-doc-sdk-examples/lex-bot-example",
"version": "1.0.0",
"description": "Using the AWS SDK for JavaScript V3 to create an Amazon Lex chatbot within a web application.",
"main": "index.js",
"repository": "git@github.com/awsdocs/aws-doc-sdk-examples/tree/master/javascriptv3/example_code/cross-services/lex-bot-example.git",
"author": "brmur",
"license": "Apache 2.0",
"scripts": {
"build": "webpack index.js --mode development --libraryTarget commonjs2 --target web --devtool false -o main.js",
"build-cdk": "aws cloudformation create-stack --stack-name STACK_NAME --template-body file://setup.yaml --capabilities CAPABILITY_IAM",
"test": "exit 0"
},
"dependencies": {
"@aws-sdk/client-cognito-identity": "^3.347.1",
"@aws-sdk/client-comprehend": "^3.347.1",
"@aws-sdk/client-iam": "^3.347.1",
"@aws-sdk/client-lex-runtime-service": "^3.347.1",
"@aws-sdk/client-translate": "^3.347.1",
"@aws-sdk/credential-provider-cognito-identity": "^3.347.1"
},
"devDependencies": {
"@types/node": "^14.0.23",
"typescript": "^4.0.2",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"type": "module"
}