-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.14 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.14 KB
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
{
"name": "sls-boilerplate-http",
"version": "1.0.0",
"description": "SLS - HTTP Boilerplate",
"main": "",
"scripts": {
"start:dev": "sls offline start --stage dev --port 8080 --skipCacheInvalidation",
"deploy:dev": "sls deploy --stage=dev",
"deploy:prod": "sls deploy --stage=prod",
"start:swagger": "http-server ./swagger -p 3000",
"dev": "concurrently --kill-others \"npm run start:dev\" \"npm run start:swagger\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^6.2.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"http-server": "^13.0.2",
"serverless-aws-documentation": "^1.1.0",
"serverless-offline": "^8.2.0",
"serverless-openapi-documentation": "^0.4.0"
},
"dependencies": {
"aws-sdk": "^2.994.0",
"bcrypt": "^5.0.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"mongodb": "^4.1.2",
"mongoose": "^6.0.7",
"serverless-dotenv-plugin": "^3.9.0",
"serverless-middleware": "^0.0.14",
"uuid": "^8.3.2",
"xml2js": "^0.4.23"
}
}