-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
41
42
43
{
"name": "hello-world",
"version": "1.0.0",
"description": "Hello world serverless function to get started.",
"repository": {
"type": "git",
"url": "git+https://github.com/alertbox/serverless-examples-ts.git"
},
"bugs": {
"url": "https://github.com/alertbox/serverless-examples-ts/Issues"
},
"homepage": "https://github.com/alertbox/serverless-examples-ts#readme",
"private": false,
"keywords": [
"aws",
"serverless",
"typescript",
"nodejs",
"examples",
"boilerplate"
],
"author": "alertbox.inc@gmail.com",
"license": "MIT",
"scripts": {
"sls": "serverless",
"clean": "npm cache clean --force",
"build": "npm run clean && npm install",
"start": "npm run build && npm run start:dev",
"start:dev": "sls offline start -s dev",
"deploy": "npm run build && npm run deploy:beta",
"deploy:beta": "sls deploy -s beta -r ap-southeast-2"
},
"dependencies": {
"aws-sdk": "^2.213.1"
},
"devDependencies": {
"@types/node": "^9.6.0",
"@types/aws-sdk": "^2.7.0",
"@types/aws-lambda": "^0.0.34",
"serverless-offline": "^3.18.0",
"serverless-plugin-typescript": "^1.1.5"
}
}