-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.03 KB
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
{
"name": "lambda-starter-infrastructure",
"version": "0.4.0-beta.1",
"description": "AWS CDK infrastructure for lambda-starter",
"private": true,
"type": "commonjs",
"main": "app.js",
"scripts": {
"build": "tsc",
"clean": "rimraf cdk.out coverage dist",
"cdk": "cdk",
"synth": "cdk synth",
"deploy": "cdk deploy",
"deploy:all": "cdk deploy --all",
"diff": "cdk diff",
"destroy": "cdk destroy",
"destroy:all": "cdk destroy --all",
"test": "jest --coverage=false --silent --verbose",
"test:coverage": "jest --coverage --silent --verbose",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/jest": "30.0.0",
"@types/node": "25.0.10",
"aws-cdk": "2.1101.0",
"esbuild": "0.27.2",
"jest": "30.2.0",
"rimraf": "6.1.2",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"dependencies": {
"aws-cdk-lib": "2.235.1",
"constructs": "10.4.5",
"dotenv": "17.2.3",
"source-map-support": "0.5.21",
"zod": "4.3.5"
}
}