-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 961 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 961 Bytes
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
{
"name": "cloudfront-function-typescript",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"build:deploy": "npm run build && npm run deploy",
"deploy": "aws cloudformation deploy --template-file CloudFrontFunctionTemplate.json --parameter-overrides FunctionCode=\"$(cat dist/index.js)\" --stack-name CloudFrontFunction --region eu-west-1",
"test": "jest"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.1",
"@rollup/plugin-node-resolve": "^13.0.2",
"@rollup/plugin-typescript": "^8.2.3",
"@types/jest": "^26.0.24",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"rollup": "^2.53.2",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.3.5"
}
}