-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.31 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
{
"name": "quickstart-aws-s3-website",
"version": "0.0.2",
"description": "Quickstart: AWS S3 Website Hosting with terraform, webpack & TypeScript baked in",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"deploy": "run-s deploy:*",
"deploy:build": "npm run build",
"deploy:generate-file-list": "ts-node quickstart-files-generator.ts",
"deploy:terraform-apply": "terraform apply",
"destroy": "terraform destroy",
"postinstall": "terraform init"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zymotik/quickstart-aws-s3-website.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/zymotik/quickstart-aws-s3-website/issues"
},
"homepage": "https://github.com/zymotik/quickstart-aws-s3-website#readme",
"devDependencies": {
"@types/node": "^11.13.7",
"clean-webpack-plugin": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"npm-run-all": "^4.1.5",
"ts-loader": "^5.4.3",
"ts-node": "^8.1.0",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.1"
},
"dependencies": {}
}