-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 939 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
36
37
38
39
40
41
42
{
"name": "my-express-application",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"launch": "npm start",
"start": "node ./bin/www",
"dev": "nodemon ./bin/www --ignore node_modules/ -e js,html,css",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.320.0",
"body-parser": "^1.18.3",
"dateformat": "^3.0.3",
"express": "^4.16.3",
"express-validation": "^1.0.2",
"joi": "^14.3.1",
"serverless-http": "^1.6.0",
"swagger-jsdoc": "^3.2.7"
},
"devDependencies": {
"aws-sdk-mock": "^4.3.0",
"dynamodb-localhost": "0.0.7",
"jest": "^23.6.0",
"nodemon": "^1.18.10",
"serverless-dynamodb-local": "^0.2.35",
"serverless-offline": "^3.28.0"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"html",
"text"
]
}
}