-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
84 lines (84 loc) · 2.26 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "cdk-spa-deploy",
"version": "2.0.0-alpha.1",
"description": "This is an AWS CDK Construct to make deploying a single page website (Angular/React/Vue) to AWS S3 behind SSL/Cloudfront as easy as 5 lines of code.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"build": "jsii",
"build:watch": "jsii -w",
"test": "tsc && jest",
"lint": "eslint --ext .ts,.tsx --format node_modules/eslint-formatter-pretty .",
"lint:fix": "eslint --fix --ext .ts,.tsx --format node_modules/eslint-formatter-pretty .",
"cdk": "cdk",
"package": "jsii-pacmak"
},
"jsii": {
"outdir": "dist",
"targets": {
"python": {
"distName": "cdk-spa-deploy",
"module": "spa_deploy"
},
"java": {
"package": "com.cdkpatterns",
"maven": {
"groupId": "com.cdkpatterns",
"artifactId": "CDKSPADeploy"
}
},
"dotnet": {
"namespace": "com.cdkpatterns",
"packageId": "CDKSPADeploy"
}
}
},
"awscdkio": {
"twitter": "nideveloper"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "17.0.2",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"aws-cdk-lib": "^2.2.0",
"constructs": "^10.0.13",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-formatter-pretty": "^4.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"jest-junit": "^12.0.0",
"jsii": "1.48.0",
"jsii-pacmak": "1.48.0",
"source-map-support": "^0.5.19",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "~4.2.4"
},
"dependencies": {},
"peerDependencies": {
"constructs": "^10.0.13",
"aws-cdk-lib": "^2.2.0"
},
"keywords": [
"aws",
"cdk",
"spa",
"website",
"deploy",
"cloudfront"
],
"author": "[email protected]",
"repository": {
"url": "https://github.com/nideveloper/CDK-SPA-Deploy.git",
"type": "git"
},
"license": "MIT"
}