-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.05 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
{
"name": "cloudfront-functions",
"version": "0.1.0",
"bin": {
"cloudfront-functions": "bin/cloudfront-functions.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"test:e2e": "jest -c jest.config.e2e.js",
"test:e2e:prod": "STAGE=production jest -c jest.config.e2e.js",
"cdk": "cdk",
"deploy": "cdk deploy --progress events",
"deploy:prod": "STAGE=production cdk deploy --progress events",
"publish-function": "ts-node --prefer-ts-exts bin/publish_function.ts",
"publish-function:prod": "STAGE=production ts-node --prefer-ts-exts bin/publish_function.ts"
},
"devDependencies": {
"@aws-cdk/assert": "1.107.0",
"@types/jest": "^26.0.10",
"@types/node": "10.17.27",
"aws-cdk": "1.107.0",
"jest": "^26.4.2",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"typescript": "~3.9.7"
},
"dependencies": {
"@aws-cdk/aws-cloudfront": "^1.107.0",
"@aws-cdk/core": "1.107.0",
"aws-sdk": "^2.922.0",
"cff-tools": "0.*.*",
"source-map-support": "^0.5.16"
}
}