-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.27 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.27 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
40
41
42
43
44
{
"name": "NodeJsExpressBoilerplate",
"version": "1.0.0",
"description": "Boilerplate for an express and mongodb app",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js,lib --ignore-path .gitignore .",
"lint:fix": "eslint --ext .js,lib --ignore-path .gitignore . --fix",
"start": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Myolnir/NodeJsExpressBoilerplate.git"
},
"author": "Angel Muelas Martinez",
"license": "MIT",
"bugs": {
"url": "https://github.com/Myolnir/NodeJsExpressBoilerplate/issues"
},
"homepage": "https://github.com/Myolnir/NodeJsExpressBoilerplate#readme",
"dependencies": {
"awilix": "^4.2.2",
"cookie-parser": "^1.4.4",
"dotenv": "^8.0.0",
"express": "^4.17.3",
"http-errors": "^1.7.3",
"http-status-codes": "^1.3.2",
"mongodb": "^3.3.0-beta2",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-plugin-jest": "^22.14.1",
"jest": "^29.3.1",
"jest-cli": "^29.3.1",
"jest-html-reporter": "^2.5.0",
"jsdoc": "^3.6.11",
"jsdoc-to-markdown": "^8.0.0",
"rimraf": "^2.6.3"
}
}