forked from raykrueger/cdk-game-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.js
39 lines (35 loc) · 1.09 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
const { awscdk } = require('projen');
const { NpmAccess } = require('projen/lib/javascript');
const project = new awscdk.AwsCdkConstructLibrary({
author: 'Ray Krueger',
authorAddress: '[email protected]',
cdkVersion: '2.74.0',
defaultReleaseBranch: 'main',
name: '@raykrueger/cdk-game-server',
repositoryUrl: 'https://github.com/raykrueger/cdk-game-server.git',
releaseToNpm: true,
npmAccess: NpmAccess.PUBLIC,
minNodeVersion: '16.14.0',
catalog: {
announce: false,
twitter: 'raykrueger',
},
deps: [
'@raykrueger/cdk-fargate-public-dns',
],
bundledDeps: [
'@aws-solutions-constructs/aws-apigateway-lambda',
'@matthewbonig/state-machine',
],
devDeps: [
'@types/node',
],
/* 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. */
eslintOptions: {
ignorePatterns: ['test/'],
},
});
project.synth();