-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.67 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "action-deploy-aws-static-site",
"version": "0.0.0",
"private": true,
"description": "Batteries-included Github action that deploys a static site to AWS Cloudfront, taking care of DNS, SSL certs and S3 buckets",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write src/**/*.ts",
"format-check": "prettier --check src/**/*.ts",
"lint": "eslint src --ext ts --fix",
"package": "ncc build",
"test": "jest",
"deploy": "cdk deploy",
"diff": "cdk diff",
"synth": "cdk synth",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onramper/action-deploy-aws-static-site.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@aws-cdk/aws-certificatemanager": "^1.204.0",
"@aws-cdk/aws-cloudfront": "^1.200.0",
"@aws-cdk/aws-route53": "^1.204.0",
"@aws-cdk/aws-route53-targets": "^1.204.0",
"@aws-cdk/aws-s3-deployment": "^1.204.0",
"@aws-cdk/core": "^1.204.0",
"@types/istanbul-lib-report": "^3.0.3",
"aws-cdk": "^2.166.0"
},
"devDependencies": {
"@aws-cdk/assert": "^2.68.0",
"@types/jest": "^28.1.3",
"@types/node": "^22.10.1",
"@typescript-eslint/parser": "^8.17.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^8.57.0",
"eslint-plugin-github": "^5.1.3",
"eslint-plugin-jest": "^28.8.3",
"jest": "^28.1.2",
"jest-circus": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "3.4.1",
"ts-jest": "^28.0.5",
"typescript": "^5.7.2"
}
}