-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 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
{
"name": "ts-serverless",
"version": "0.1.0",
"bin": {
"ts-serverless": "bin/ts-serverless.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest --testPathIgnorePatterns=.*e2e.*",
"cdk": "cdk",
"typecheck": "tsc --noEmit",
"list": "cdk list",
"deploy": "AWS_REGION=ap-northeast-2 cdk deploy --profile talchulhaebang",
"destroy": "AWS_REGION=ap-northeast-2 cdk destroy --profile talchulhaebang",
"bootstrap": "AWS_REGION=ap-northeast-2 cdk bootstrap --profile talchulhaebang"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "10.17.27",
"@types/prettier": "2.6.0",
"@types/ramda": "0.28.0",
"aws-cdk": "2.31.1",
"jest": "^28.0.1",
"ts-jest": "^28.0.1",
"ts-node": "^10.8.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@mipong/utils": "1.0.7",
"@types/cheerio": "^0.22.31",
"aws-cdk-lib": "2.31.1",
"cheerio": "^1.0.0-rc.12",
"constructs": "^10.0.0",
"iconv-lite": "^0.6.3",
"ramda": "0.28.0",
"source-map-support": "^0.5.21"
}
}