-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.projenrc.js
38 lines (36 loc) · 992 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
const { AwsCdkTypeScriptApp } = require('projen');
const project = new AwsCdkTypeScriptApp({
cdkVersion: '1.95.2',
defaultReleaseBranch: 'main',
name: 'cdk-serverless-chatime-ordering-helper',
authorAddress: '[email protected]',
authorName: 'Aaron Brighton',
cdkDependencies: [
'@aws-cdk/core',
'@aws-cdk/aws-sns',
'@aws-cdk/aws-sns-subscriptions',
'@aws-cdk/aws-lambda',
'@aws-cdk/aws-lambda-nodejs',
'@aws-cdk/aws-location',
'@aws-cdk/aws-iam',
'@aws-cdk/aws-events',
'@aws-cdk/aws-events-targets',
'@aws-cdk/aws-sqs',
'@aws-cdk/aws-lambda-event-sources',
'@aws-cdk/aws-stepfunctions',
'@aws-cdk/aws-stepfunctions-tasks',
],
devDeps: [
'@types/aws-lambda',
],
deps: [
'aws-lambda',
'aws-sdk',
'axios',
],
release: false,
});
const common_exclude = ['cdk.context.json', '.aws-sam/'];
project.npmignore.exclude(...common_exclude);
project.gitignore.exclude(...common_exclude);
project.synth();