-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "node-mongodb-template",
"version": "1.0.0",
"description": "A starter project for Node application written in Express framework with MongoDB accessible via mongoose",
"main": "server.js",
"keywords": [
"Node.js",
"Node",
"Express.js",
"express",
"template",
"seed",
"MongoDB",
"mongoose",
"heroku",
"swagger",
"winston"
],
"homepage": "https://github.com/pamigomp/node-mongodb-template",
"bugs": {
"url": "https://github.com/pamigomp/node-mongodb-template/issues"
},
"author": "Michal Pietrzak",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pamigomp/node-mongodb-template.git"
},
"scripts": {
"postinstall": "if-env NODE_ENV=development && git config core.hooksPath hooks || exit 0",
"start": "node server.js",
"dev": "nodemon server.js",
"cluster": "node cluster.js",
"test": "npm run test-unit && npm run test-integration",
"test-unit": "cross-env NODE_ENV=test ./node_modules/.bin/mocha test/unit/*.test.js",
"test-integration": "cross-env NODE_ENV=test ./node_modules/.bin/mocha test/integration/*.test.js"
},
"dependencies": {
"bcryptjs": "2.4.3",
"body-parser": "1.19.0",
"compression": "1.7.4",
"consign": "0.1.6",
"cookie-parser": "1.4.4",
"cors": "2.8.5",
"cross-env": "5.2.0",
"dotenv": "8.0.0",
"envalid": "5.0.0",
"errorhandler": "1.5.1",
"express": "4.17.1",
"express-validator": "5.3.1",
"helmet": "3.20.0",
"if-env": "1.0.4",
"jsonwebtoken": "8.5.1",
"memory-cache": "0.2.0",
"method-override": "3.0.0",
"mongoose": "5.6.6",
"mongoose-paginate": "5.0.3",
"morgan": "1.9.1",
"passport": "0.4.0",
"passport-facebook": "3.0.0",
"passport-jwt": "4.0.0",
"passport-local": "1.0.0",
"q": "^1.5.1",
"response-time": "2.3.2",
"selfsigned": "1.10.4",
"swagger-jsdoc": "3.3.0",
"swagger-ui-express": "4.0.7",
"validator": "11.1.0",
"web-push": "3.3.5",
"winston": "3.2.1"
},
"devDependencies": {
"eslint": "6.1.0",
"eslint-plugin-node": "9.1.0",
"mocha": "6.2.0",
"nodemon": "1.19.1"
},
"engines": {
"node": "10.15.0",
"npm": "6.1.0",
"yarn": "1.17.3"
},
"private": false
}