-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.25 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
44
45
46
{
"name": "api",
"version": "1.0.0",
"description": "https://github.com/serverless/serverless",
"main": "handler.js",
"scripts": {
"start": "serverless offline start",
"test": "cross-env NODE_ENV=test jest --env=node --detectOpenHandles --coverage --runInBand --forceExit",
"deploy": "cross-env NODE_ENV=production serverless deploy --aws-profile my-aws-profile",
"debug": "cross-env NODE_ENV=development SLS_DEBUG=* node --inspect ./node_modules/serverless/bin/serverless offline start"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/fabiorogeriosj/aws-serverless-template.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/fabiorogeriosj/aws-serverless-template/issues"
},
"homepage": "https://gitlab.com/fabiorogeriosj/aws-serverless-template#README",
"devDependencies": {
"cross-env": "^5.2.0",
"jest": "^23.4.2",
"serverless": "^1.28.0",
"standard": "^11.0.1"
},
"dependencies": {
"mongodb": "^3.0.10",
"serverless-offline": "^3.25.6",
"dotenv": "^6.2.0"
},
"standard": {
"global": [
"describe",
"beforeAll",
"test",
"it",
"expect",
"afterAll"
]
},
"jest": {
"verbose": false
}
}