-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.projenrc.js
41 lines (36 loc) · 865 Bytes
/
.projenrc.js
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
const { AwsCdkTypeScriptApp, NodePackageManager } = require('projen');
const project = new AwsCdkTypeScriptApp({
// Project config
name: 'aws-cdk-newsletter',
description: 'Functionless example with AWS Step Functions',
authorName: 'Henrik Fricke',
authorEmail: '[email protected]',
authorUrl: 'https://yetanother.blog',
license: 'MIT',
defaultReleaseBranch: 'main',
// CDK config
cdkVersion: '1.95.2',
cdkVersion: '2.0.0',
constructsVersion: '10.0.0',
packageManager: NodePackageManager.NPM,
// TSconfig
tsconfig: {
compilerOptions: {
esModuleInterop: true,
},
},
// Dependencies
devDeps: [
'constructs',
'aws-cdk-lib',
'@types/node',
'esbuild@0',
'testcontainers',
'@aws-sdk/client-sfn',
'async-wait-until',
],
deps: [
'@aws-sdk/client-sesv2',
],
});
project.synth();