-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.49 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
{
"name": "francis-genai-rag-chatbot-on-aws",
"version": "1.0.1",
"description": "Francis GenAI RAG Chatbot on AWS",
"license": "Apache 2.0",
"bin": {
"infra": "bin/infra.js"
},
"scripts": {
"lint": "eslint --fix --ext .ts .",
"build:frontend": "cd frontend && npm run build && cd -",
"build": "npm run lint && npm run build:frontend && npm run cdk synth",
"cleanup:tsc": "tsc --build ./ --clean",
"watch": "tsc -w",
"test": "jest --silent",
"cdk": "cdk",
"postinstall": "npm install --prefix frontend"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.5",
"@types/node": "20.12.7",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"aws-cdk": "^2.177.0",
"cdk-nag": "2.27.170",
"esbuild": "^0.18.15",
"eslint": "^8.35.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "~5.1.6"
},
"dependencies": {
"@aws-cdk/aws-cognito-identitypool-alpha": "^2.177.0-alpha.0",
"@aws-cdk/aws-sagemaker-alpha": "^2.177.0-alpha.0",
"@aws-sdk/util-dynamodb": "^3.609.0",
"ajv": "^8.16.0",
"aws-cdk-lib": "^2.177.0",
"cdk-nag": "^2.28.81",
"constructs": "^10.4.2",
"js-yaml": "^4.1.0",
"source-map-support": "^0.5.21"
}
}