-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "cdkserverlesstemplate",
"version": "0.1.0",
"bin": {
"CDKServerlessTemplate": "bin/CDKServerlessTemplate.ts"
},
"scripts": {
"build": "npx tsc",
"watch": "npx tsc -w",
"test": "npx jest",
"cdk": "npx cdk",
"rename": "npx ts-node scripts/rename.ts",
"synth": "npx ts-node scripts/checkEnv.ts && npx dotenv-cli npx cdk synth",
"update-dependencies": "npm outdated && npm update"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "20.14.0",
"@types/source-map-support": "^0.5.10",
"dotenv-cli": "^7.4.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.588.0",
"@aws-sdk/lib-dynamodb": "^3.588.0",
"@types/aws-lambda": "^8.10.138",
"aws-cdk-lib": "^2.144.0",
"axios": "^1.7.2",
"constructs": "^10.0.0",
"dynamodb-toolbox": "^0.9.5",
"esbuild": "^0.21.4",
"source-map-support": "^0.5.21"
}
}