-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.18 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": "express-app",
"version": "2.1.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"init": "node ./bin/init"
},
"repository": {
"type": "git",
"url": "https://github.com/basil-reji/express-app.git"
},
"_moduleAliases": {
"@root": ".",
"@config": "config",
"@controllers": "controllers",
"@database": "database",
"@utils": "utils",
"@middlewares": "middlewares",
"@models": "database/models",
"@routes": "routes",
"@services": "services",
"@views": "views"
},
"author": "Basil Reji",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.0",
"cookie-parser": "~1.4.4",
"crypto": "^1.0.1",
"debug": "~2.6.9",
"dotenv": "^16.0.1",
"express": "^4.18.2",
"express-handlebars": "^6.0.6",
"express-rate-limit": "^6.8.1",
"express-validator": "^7.0.1",
"hbs": "^4.2.0",
"helmet": "^7.0.0",
"http-errors": "~1.6.3",
"json": "^11.0.0",
"jsonwebtoken": "^9.0.1",
"module-alias": "^2.2.3",
"mongoose": "^7.4.1",
"morgan": "~1.9.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"validator": "^13.9.0"
}
}