-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 986 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 986 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
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "static-website",
"version": "0.1.0",
"bin": {
"static-website": "bin/static-website.js"
},
"description": "Infrastructure for an HTTPS static site using S3 and CloudFront",
"scripts": {
"build": "tsc",
"clean": "tsc --build --clean",
"format": "npx prettier --write .",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^18.15.5",
"aws-cdk": "^2.115.0",
"jest": "^29.0.0",
"module-alias": "2.2.2",
"prettier": "2.7.1",
"ts-jest": "^29.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"dependencies": {
"aws-cdk-lib": "^2.115.0",
"constructs": "^10.0.5",
"dotenv": "^16.0.3",
"env-var": "^7.3.0",
"source-map-support": "0.5.21"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "all"
}
}