16 lines
609 B
JavaScript
16 lines
609 B
JavaScript
const { awscdk } = require('projen');
|
|
const project = new awscdk.AwsCdkTypeScriptApp({
|
|
cdkVersion: '2.73.0',
|
|
defaultReleaseBranch: 'main',
|
|
name: 'infrastructure',
|
|
mutableBuild: true,
|
|
|
|
deps: [
|
|
'@aws-cdk/aws-lambda-python-alpha',
|
|
'cdk-bootstrapless-synthesizer',
|
|
], /* Runtime dependencies of this module. */
|
|
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */
|
|
// devDeps: [], /* Build dependencies for this module. */
|
|
// packageName: undefined, /* The "name" in package.json. */
|
|
});
|
|
project.synth(); |