-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.projenrc.ts
31 lines (29 loc) · 1003 Bytes
/
.projenrc.ts
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
import { VendrCdkConstruct } from "@vendrinc/projen";
import { javascript } from "projen";
const project = new VendrCdkConstruct({
author: "Lora Reames",
authorAddress: "lora.reames@vendr.com",
cdkVersion: "2.114.1",
constructsVersion: "10.3.0",
defaultReleaseBranch: "main",
name: "account-closure",
packageName: "@vendrinc/account-closure",
minNodeVersion: "18.18.0",
npmAccess: javascript.NpmAccess.PUBLIC,
repositoryUrl: "https://github.com/vendrinc/account-closure.git",
npmRegistryUrl: "https://npm.pkg.github.com",
description:
"cdk construct for automating AWS account closure and dealing with the AWS close account quota",
// bundledDeps: ["@aws-solutions-constructs/aws-eventbridge-stepfunctions"],
deps: ["@aws-solutions-constructs/aws-eventbridge-stepfunctions"],
devDeps: [
"node@18",
"@types/node@18",
"aws-cdk-lib@2.114.1",
"@vendrinc/projen@0.0.97",
// "projen@0.73.26",
],
prettier: true,
eslint: true,
});
project.synth();