-
Notifications
You must be signed in to change notification settings - Fork 1
/
.projenrc.js
52 lines (50 loc) · 1.07 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
47
48
49
50
51
52
const { TaimosTypescriptLibrary } = require('@taimos/projen');
const project = new TaimosTypescriptLibrary({
name: '@taimos/lambda-toolbox',
deps: [
'jsonwebtoken',
'jwk-to-pem',
'axios',
'uuid',
'lambda-log',
'@aws-crypto/sha256-js',
'@aws-sdk/client-appsync',
'@aws-sdk/client-dynamodb',
'@aws-sdk/credential-providers',
'@aws-sdk/lib-dynamodb',
'@aws-sdk/node-http-handler',
'@aws-sdk/protocol-http',
'@aws-sdk/signature-v4',
],
docgen: false,
defaultReleaseBranch: 'main',
devDeps: [
'@types/aws-lambda',
'@types/lambda-log',
'openapi-typescript',
'@types/jsonwebtoken',
'@types/jwk-to-pem',
'@types/uuid',
'@taimos/projen',
'@hapi/boom',
'aws-sdk-client-mock',
'aws-sdk-client-mock-jest',
],
keywords: [
'aws',
'lambda',
'dynamodb',
],
tsconfig: {
compilerOptions: {
skipLibCheck: true,
},
},
tsconfigDev: {
compilerOptions: {
skipLibCheck: true,
},
},
repository: 'https://github.com/taimos/lambda-toolbox',
});
project.synth();