-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
64 lines (64 loc) · 1.61 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "nodejs_mongo_boilerplate",
"version": "1.0.0",
"description": "CRUD Blog using NodeJS,Express, MongoDB",
"main": "app.js",
"scripts": {
"start": "DEBUG=api:* node src/app.js",
"dev": "DEBUG=api:* nodemon src/app.js",
"lint": "eslint .",
"fix": "eslint --fix . && git add .",
"test": "mocha --timeout 10000"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Swap76/NodeJS_Mongo_BoilerPlate"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Swap76/NodeJS_Mongo_BoilerPlate/issues"
},
"homepage": "https://github.com/Swap76/NodeJS_Mongo_BoilerPlate#readme",
"dependencies": {
"@sentry/node": "^5.10.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"bunyan": "^1.8.12",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^7.0.0",
"errorhandler": "^1.5.1",
"express": "^4.16.4",
"helmet": "^3.16.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"nodemon": "^1.19.0",
"npm-run-all": "^4.1.5",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"validator": "^10.11.0"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"chai": "^3.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.6.0",
"husky": "^3.0.9",
"mocha": "^6.2.2"
}
}