generated from JoshuaToth/serverless-api-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 993 Bytes
/
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
{
"name": "severless-template",
"version": "0.0.1",
"description": "A template for a Serverless API using Typescript and Jest",
"main": "functions/healthcheck.js",
"scripts": {
"test": "jest",
"remove": "sls remove",
"deploy": "sls deploy",
"deploy:prod": "sls deploy --stage production"
},
"repository": {
"type": "git",
"url": "git+JoshuaToth/serverless-api-typescript-template.git"
},
"author": "Joshua Toth",
"license": "MIT",
"bugs": {
"url": "https://github.com/JoshuaToth/serverless-api-typescript-template/issues"
},
"homepage": "https://github.com/JoshuaToth/serverless-api-typescript-template#readme",
"dependencies": {
"typescript": "^3.5.3"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/axios": "^0.14.0",
"axios": "^0.19.0",
"jest": "^24.8.0",
"serverless-plugin-typescript": "^1.1.7",
"serverless-stack-output": "^0.2.3",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0"
}
}