-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.32 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
{
"name": "14-implementacion-logger",
"version": "1.0.0",
"description": "",
"main": "./src/index.js",
"type": "module",
"scripts": {
"lint": "standard && node ./src/index.js",
"build": "node ./src/index.js --mode PRODUCTION",
"start": "nodemon ./src/index.js",
"build:css": "npx tailwindcss -i ./src/public/css/tailwind.css -o ./src/public/css/app.css --minify --watch"
},
"keywords": [],
"author": {
"name": "Aldair González",
"email": "aldairgome97@gmail.com",
"url": "https://github.com/aldair-gonzalez"
},
"license": "ISC",
"dependencies": {
"cookie-parser": "1.4.6",
"express": "4.18.2",
"express-compression": "1.0.2",
"express-handlebars": "7.0.7",
"jsonwebtoken": "9.0.0",
"mongoose": "7.0.4",
"mongoose-paginate-v2": "1.7.1",
"morgan": "1.10.0",
"nodemailer": "6.9.1",
"passport": "0.6.0",
"passport-github2": "0.1.12",
"passport-jwt": "4.0.1",
"passport-local": "1.0.0",
"winston": "3.8.2"
},
"devDependencies": {
"@faker-js/faker": "7.6.0",
"bcrypt": "5.1.0",
"commander": "10.0.1",
"dotenv": "16.0.3",
"nodemon": "2.0.22",
"standard": "17.0.0",
"tailwindcss": "3.3.1"
},
"engines": {
"node": ">= 18.15.0"
},
"eslintConfig": {
"extends": "./node_modules/standard/eslintrc.json"
}
}