-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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
{
"name": "serverless-boilerplate",
"version": "2.0.0",
"description": "basic boilerplate with offline development setup",
"main": "index.js",
"dependencies": {
"gulp": "4.0.0",
"gulp-exec": "3.0.2",
"gulp-sequence": "1.0.0",
"gulp-util": "3.0.7",
"i": "0.3.5",
"webpack": "4.19.1"
},
"scripts": {
"preinstall": "cd web && npm install",
"postinstall": "cd api && cd todo && npm install",
"db-setup": "cd api && cd todo && sls dynamodb install",
"db-remove": "cd api && cd todo && sls dynamodb remove",
"predeploy-s3": "cd web && npm run build",
"deploy-s3": "cd web && aws s3 --profile <profile> sync ./build/ s3://<bucket_name> --region <region>",
"app": "gulp serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mjzone/serverless-boilerplate.git"
},
"keywords": [
"serverless",
"boilerplate",
"aws",
"offline"
],
"author": "Manoj Fernando <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mjzone/serverless-boilerplate/issues"
},
"homepage": "https://github.com/mjzone/serverless-boilerplate#readme",
"devDependencies": {}
}