-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.71 KB
/
package.json
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "cdk-example-app",
"scripts": {
"build": "npx projen build",
"bundle": "npx projen bundle",
"bundle:posts/create.lambda": "npx projen bundle:posts/create.lambda",
"bundle:posts/create.lambda:watch": "npx projen bundle:posts/create.lambda:watch",
"bundle:posts/get-post.server": "npx projen bundle:posts/get-post.server",
"bundle:posts/get-post.server:watch": "npx projen bundle:posts/get-post.server:watch",
"clobber": "npx projen clobber",
"compile": "npx projen compile",
"default": "npx projen default",
"deploy": "npx projen deploy",
"destroy": "npx projen destroy",
"dia": "npx projen dia",
"diff": "npx projen diff",
"eject": "npx projen eject",
"eslint": "npx projen eslint",
"integ": "npx projen integ",
"package": "npx projen package",
"post-compile": "npx projen post-compile",
"pre-compile": "npx projen pre-compile",
"synth": "npx projen synth",
"synth:silent": "npx projen synth:silent",
"test": "npx projen test",
"test:watch": "npx projen test:watch",
"watch": "npx projen watch",
"projen": "npx projen"
},
"devDependencies": {
"@aws-lambda-powertools/commons": "^1.11.0",
"@aws-lambda-powertools/logger": "^1.11.0",
"@aws-lambda-powertools/metrics": "^1.11.0",
"@aws-lambda-powertools/tracer": "^1.11.0",
"@aws-sdk/client-dynamodb": "^3.363.0",
"@aws-sdk/util-dynamodb": "^3.365.0",
"@swc/core": "^1.3.70",
"@swc/helpers": "^0.5.1",
"@types/aws-lambda": "^8.10.119",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node": "^16",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5",
"aws-cdk": "^2.151.0",
"aws-sdk-client-mock": "^3.0.0",
"aws-xray-sdk": "^3.5.0",
"case": "^1.6.3",
"cdk-dia": "^0.10.0",
"esbuild": "^0.18.4",
"eslint": "^8",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-node": "^0.3.7",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.5.0",
"jest-junit": "^15",
"prettier": "^3.3.3",
"projen": "^0.71.101",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"@aws-cdk/aws-redshift-alpha": "^2.151.0-alpha.0",
"@aws-cdk/integ-runner": "^2.151.0-alpha.0",
"@aws-cdk/integ-tests-alpha": "^2.151.0-alpha.0",
"@cdklabs/cdk-validator-cfnguard": "^0.0.52",
"aws-cdk-lib": "^2.151.0",
"cdk-monitoring-constructs": "^8.1.0",
"constructs": "^10.0.5",
"express": "^4.18.2",
"hall-constructs": "^0.0.2",
"node-fetch": "^3.3.1"
},
"license": "Apache-2.0",
"version": "0.0.0",
"jest": {
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"isolatedModules": true,
"tsconfig": "tsconfig.dev.json"
}
]
},
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
"<rootDir>/(test|src)/**/*(*.)@(spec|test).ts?(x)"
],
"clearMocks": true,
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"clover",
"cobertura",
"text"
],
"coverageDirectory": "coverage",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"watchPathIgnorePatterns": [
"/node_modules/"
],
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "test-reports"
}
]
],
"preset": "ts-jest"
},
"//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"."
}