-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
118 lines (118 loc) · 4.29 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "genai-newsletter",
"version": "1.2.0",
"type": "module",
"scripts": {
"config": "tsx ./cli/config.ts",
"build": "tsc && npm run codegen && npm run build:appsync && npm run build:ui",
"build:ui": "cd lib/user-interface/genai-newsletter-ui/ && vite build",
"build:appsync": "tsx ./lib/api/functions/bundle.ts",
"watch": "tsc -w",
"lint": "eslint . --config .eslintrc.json --ext .js,.jsx,.ts,.tsx --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif --fix",
"prettier": "prettier --write \"**/*.{ts,tsx}\"",
"format": "npm run prettier && npm run lint",
"test": "jest",
"deploy": "cdk deploy",
"cdk": "cdk",
"commit": "cz",
"codegen": "npm run codegen:api && npm run codegen:auth",
"codegen:api": "cd lib/shared/api && npx @aws-amplify/cli codegen",
"codegen:auth": "cd lib/shared/api/schema-to-avp && npx graphql-codegen ./codegen.ts",
"email:start": "cd lib/shared/email-generator && npm run start",
"ui:start": "cd lib/user-interface/genai-newsletter-ui/ && vite",
"docs:dev": "vitepress dev pages",
"docs:build": "vitepress build pages",
"docs:preview": "vitepress preview pages"
},
"devDependencies": {
"@aws-amplify/cli": "^12.12.1",
"@aws-appsync/utils": "^1.7.0",
"@aws-sdk/client-cognito-identity-provider": "^3.554.0",
"@aws-sdk/client-lambda": "^3.496.0",
"@aws-sdk/client-s3": "^3.588.0",
"@aws-sdk/client-verifiedpermissions": "^3.598.0",
"@cloudscape-design/components": "^3.0.671",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/plugin-helpers": "^5.0.3",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@middy/core": "^5.2.1",
"@react-email/components": "0.0.12",
"@react-email/markdown": "^0.0.8",
"@react-email/render": "^0.0.15",
"@types/ansi-escape-sequences": "^4.0.4",
"@types/aws-lambda": "^8.10.130",
"@types/figlet": "^1.5.8",
"@types/html-to-text": "^9.0.4",
"@types/jest": "^29.5.8",
"@types/node": "20.12.12",
"@types/prompt-sync": "^4.2.3",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.7",
"@vitejs/plugin-react": "^4.2.1",
"ansi-escape-sequences": "^6.2.2",
"aws-amplify": "^6.3.5",
"aws-cdk": "^2.135.0",
"commitizen": "^4.3.0",
"compare-versions": "^6.1.0",
"cz-conventional-changelog": "^3.3.0",
"depcheck": "^1.4.7",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"figlet": "^1.7.0",
"git-conventional-commits": "^2.6.7",
"prettier": "^3.2.5",
"prompt-sync": "^4.2.0",
"react-email": "^2.1.4",
"react-router-dom": "^6.22.3",
"ts-node": "^10.9.2",
"typescript": "5.3",
"vite": "^5.2.12",
"vite-plugin-eslint": "^1.8.1",
"vitepress": "^1.1.4"
},
"dependencies": {
"@aws-amplify/ui-react": "^6.1.12",
"@aws-cdk/aws-cognito-identitypool-alpha": "^2.134.0-alpha.0",
"@aws-lambda-powertools/logger": "^2.2.0",
"@aws-lambda-powertools/metrics": "^1.17.0",
"@aws-lambda-powertools/tracer": "^2.1.0",
"@aws-sdk/client-bedrock-runtime": "^3.590.0",
"@aws-sdk/client-dynamodb": "^3.584.0",
"@aws-sdk/client-pinpoint": "^3.478.0",
"@aws-sdk/client-scheduler": "^3.478.0",
"@aws-sdk/client-sfn": "^3.569.0",
"@aws-sdk/lib-storage": "^3.472.0",
"@aws-sdk/util-dynamodb": "^3.473.0",
"@cloudscape-design/chat-components": "^1.0.0",
"@cloudscape-design/collection-hooks": "^1.0.45",
"@cloudscape-design/component-toolkit": "^1.0.0-beta.51",
"@cloudscape-design/global-styles": "^1.0.26",
"@types/cheerio": "^0.22.35",
"aws-cdk-lib": "^2.144.0",
"aws-jwt-verify": "^4.0.1",
"axios": "^1.6.2",
"cdk-nag": "^2.28.109",
"cheerio": "^1.0.0-rc.12",
"commander": "^11.1.0",
"constructs": "^10.0.0",
"esbuild": "^0.21.2",
"graphql": "^16.8.1",
"mui-color-input": "^2.0.3",
"react": "18.2",
"react-dom": "18.2",
"react-router": "^6.23.1",
"source-map-support": "^0.5.21",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.11.0",
"typescript-eslint": "^7.9.0",
"uuid": "^10.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}