-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "express-basic-boilerplate",
"version": "1.1.0",
"description": "A Basic Express Boilerplate",
"main": "server.js",
"type": "module",
"scripts": {
"start": "NODE_ENV=development nodemon server.js"
},
"keywords": [],
"author": {
"name": "Cristobal Domínguez",
"email": "cristobald@gmail.com"
},
"license": "ISC",
"homepage": "https://github.com/cristobaldominguez/express-basic-boilerplate",
"repository": {
"type": "git",
"url": "https://github.com/cristobaldominguez/express-basic-boilerplate"
},
"bugs": {
"url": "https://github.com/cristobaldominguez/express-basic-boilerplate/issues"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"nodemon": "^2.0.7"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.0",
"express": "^4.18.0",
"express-async-errors": "^3.1.1",
"express-handlebars": "^6.0.5",
"express-sanitizer": "^1.0.6",
"i18next": "^22.4.13",
"i18next-http-middleware": "^3.3.0",
"i18next-node-fs-backend": "^2.1.3",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.3"
}
}