forked from GemeenteNijmegen/koop-geo-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.projenrc.js
More file actions
22 lines (22 loc) · 743 Bytes
/
Copy path.projenrc.js
File metadata and controls
22 lines (22 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const { awscdk } = require('projen');
const project = new awscdk.AwsCdkTypeScriptApp({
cdkVersion: '2.1.0',
defaultReleaseBranch: 'main',
name: 'koop-js-demo',
deps: [
'koop',
'serverless',
'serverless-http',
'serverless-offline',
'request',
],
scripts: {
'install:koop': 'cd src/koop && yarn install',
'postbuild': 'npx projen install:koop',
},
// deps: [], /* 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();