-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "13-mocking-manejo-errores",
"version": "1.0.0",
"description": "",
"main": "./src/index.js",
"type": "module",
"scripts": {
"test": "standard && node ./src/index.js",
"build": "node ./src/index.js -m 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": "",
"license": "ISC",
"dependencies": {
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"express-compression": "^1.0.2",
"express-handlebars": "^7.0.4",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.3",
"mongoose-paginate-v2": "^1.7.1",
"nodemailer": "^6.9.1",
"passport": "^0.6.0",
"passport-github2": "^0.1.12",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"bcrypt": "^5.1.0",
"commander": "^10.0.0",
"dotenv": "^16.0.3",
"standard": "^17.0.0",
"tailwindcss": "^3.3.1"
},
"eslintConfig": {
"extends": "./node_modules/standard/eslintrc.json"
}
}