-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
85 lines (85 loc) · 2.95 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
85
{
"name": "agents-for-energy",
"version": "0.1.0",
"private": true,
"scripts": {
"ecrAuth": "aws ecr-public get-login-password | docker login --username AWS --password-stdin public.ecr.aws",
"cdkDiff": "cdk diff --ci --app \"npx tsx amplify/backend.ts\" --output .amplify/artifacts/cdk.out --context amplify-backend-name=$(whoami) --context amplify-backend-namespace=$(node -e \"console.log(require('./package.json').name)\") --context amplify-backend-type=sandbox",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@aws-amplify/ui-react": "^6.9.1",
"@aws-amplify/ui-react-storage": "^3.7.1",
"@cloudscape-design/chat-components": "^1.0.19",
"@cloudscape-design/code-view": "^3.0.36",
"@cloudscape-design/components": "^3.0.889",
"@cloudscape-design/design-tokens": "^3.0.44",
"@cloudscape-design/global-styles": "^1.0.34",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@langchain/aws": "^0.1.1",
"@langchain/langgraph": "^0.2.22",
"@mui/icons-material": "^6.1.3",
"@mui/material": "^6.4.3",
"@mui/x-data-grid": "^7.22.1",
"aws-amplify": "^6.12.2",
"bedrock-agents-cdk": "^0.0.6",
"chart.js": "^4.4.6",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-plugin-annotation": "^3.1.0",
"chartjs-plugin-datalabels": "^2.2.0",
"chartjs-plugin-zoom": "^2.0.1",
"date-fns": "^4.1.0",
"graphql-tag": "^2.12.6",
"jsonschema": "^1.4.1",
"next": "^14.2.23",
"pdf-lib": "^1.17.1",
"react": "^18",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18",
"react-hook-form": "^7.54.2",
"react-markdown": "^9.0.1",
"react-plotly.js": "^2.6.0",
"react-textarea-autosize": "^8.5.4",
"recharts": "^2.13.3",
"remark-gfm": "^4.0.0",
"sass": "^1.79.4",
"sharp": "^0.33.5",
"yaml": "^2.7.0"
},
"devDependencies": {
"@aws-amplify/backend": "^1.13.0",
"@aws-amplify/backend-cli": "^1.4.7",
"@aws-appsync/utils": "^1.9.0",
"@aws-sdk/client-appsync": "^3.670.0",
"@aws-sdk/client-athena": "^3.679.0",
"@aws-sdk/client-bedrock-agent": "^3.687.0",
"@aws-sdk/client-bedrock-agent-runtime": "^3.670.0",
"@aws-sdk/client-rds-data": "^3.679.0",
"@aws-sdk/client-sfn": "^3.670.0",
"@aws-sdk/client-textract": "^3.716.0",
"@aws-sdk/credential-provider-node": "^3.670.0",
"@cdklabs/generative-ai-cdk-constructs": "^0.1.289",
"@langchain/community": "^0.3.17",
"@tailwindcss/typography": "^0.5.15",
"@types/jsdom": "^21.1.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"aws-cdk": "^2.175.1",
"aws-cdk-lib": "^2.177.0",
"aws-sdk": "^2.1691.0",
"constructs": "^10.4.2",
"esbuild": "^0.25.2",
"eslint": "^8",
"eslint-config-next": "14.2.14",
"jsdom": "^25.0.1",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
}
}