-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.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
38
39
40
{
"name": "cdk-demo",
"version": "0.1.0",
"bin": {
"cdk-demo": "bin/cdk-demo.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"run-site": "npm --prefix website run start",
"build-site": "npm --prefix website run build",
"assume-deploy": "aws sso login --profile ryandemo-deployment",
"diff": "cdk diff --profile ryandemo-deployment",
"synth": "cdk synth --profile ryandemo-deployment",
"deploy": "cdk deploy --all --profile ryandemo-deployment",
"destroy": "cdk destroy --all --profile ryandemo-deployment"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.101",
"@types/jest": "^27.4.1",
"@types/node": "10.17.27",
"@types/uuid": "^8.3.4",
"aws-cdk": "2.23.0",
"esbuild": "^0.14.47",
"fs-extra": "^10.1.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "~3.9.7"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.624.0",
"aws-cdk-lib": "2.80.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21",
"uuid": "^8.3.2"
}
}