-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
{
"name": "nodejs-boilerplate",
"version": "1.0.0",
"description": "NodeJS project",
"main": "src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fuckowsky/nodejs-boilerplate.git"
},
"keywords": [
"nodejs",
"express",
"mongodb",
"ejs",
"login",
"boilerplate"
],
"author": "Antonio Martínez",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/fuckowsky/nodejs-boilerplate/issues"
},
"homepage": "https://github.com/fuckowsky/nodejs-boilerplate#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"connect-flash": "^0.1.1",
"cors": "^2.8.5",
"ejs": "^3.1.5",
"elastic-apm-node": "^3.7.0",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.0",
"express-session": "^1.17.1",
"helmet": "^4.2.0",
"method-override": "^3.0.0",
"mongoose": "^5.10.12",
"nodemailer": "^6.4.14",
"passport": "^0.4.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.6"
}
}