forked from cdklabs/cdk-watchful
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.js
46 lines (38 loc) · 1.25 KB
/
.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
42
43
44
45
46
const { awscdk } = require('projen');
const cdkVersion = '1.161.0';
const project = new awscdk.AwsCdkConstructLibrary({
name: '@myhelix/cdk-watchful',
description: 'Watching your CDK apps since 2019',
defaultReleaseBranch: 'main',
authorName: 'Elad Ben-Israel (maintained by myhelix)',
authorEmail: 'ops@helix.com',
repository: 'https://github.com/myhelix/cdk-watchful.git',
keywords: ['cloudwatch', 'monitoring'],
// creates PRs for projen upgrades
projenUpgradeSecret: 'PROJEN_GITHUB_TOKEN',
cdkVersion,
cdkVersionPinning: true,
cdkDependencies: [
'@aws-cdk/aws-apigateway',
'@aws-cdk/aws-cloudwatch',
'@aws-cdk/aws-cloudwatch-actions',
'@aws-cdk/aws-dynamodb',
'@aws-cdk/aws-ecs',
'@aws-cdk/aws-ecs-patterns',
'@aws-cdk/aws-elasticloadbalancingv2',
'@aws-cdk/aws-events',
'@aws-cdk/aws-events-targets',
'@aws-cdk/aws-kinesisfirehose',
'@aws-cdk/aws-lambda',
'@aws-cdk/aws-rds',
'@aws-cdk/aws-sns',
'@aws-cdk/aws-sns-subscriptions',
'@aws-cdk/aws-sqs',
'@aws-cdk/aws-stepfunctions',
'@aws-cdk/core',
],
devDeps: ['aws-sdk', 'eslint-plugin-import'],
});
project.gitignore.exclude('.env', '.idea');
project.gitignore.exclude('example/*.js', 'example/*.d.ts');
project.synth();