-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 936 Bytes
/
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
{
"name": "infrastructure",
"version": "0.1.0",
"bin": {
"infrastructure": "bin/infrastructure.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"deploy:api:windows": "cd lib/functions && rmdir /s /q dist && npx tsc && xcopy /E /I /Q node_modules/ ../dist/node_modules/ && cd ../.. && cdk deploy ApiStack",
"deploy:api": "cd lib/functions && rmdir /s /q dist && npx tsc && cp -R node_modules/ ../dist/node_modules/ && cd ../.. && cdk deploy ApiStack"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "20.4.10",
"aws-cdk": "2.92.0",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~5.1.6"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.391.0",
"aws-cdk-lib": "^2.92.0",
"constructs": "^10.0.0",
"runtypes": "^6.7.0",
"source-map-support": "^0.5.21"
}
}