-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "proyecto-01",
"version": "1.0.0",
"description": "",
"main": "app.js",
"type": "module",
"scripts": {
"start:dev": "cross-env NODE_ENV=development nodemon ./src/app",
"start:prod": "cross-env NODE_ENV=production nodemon ./src/app",
"test": "jest --config ./jest.config.json",
"test:watch": "npm run test -- --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"dotenv": "^16.4.5",
"nodemon": "^3.1.0",
"@faker-js/faker": "^7.6.0",
"@babel/preset-env": "^7.24.4",
"babel-jest": "^29.7.0",
"jest": "^29.7.0"
},
"dependencies": {
"@handlebars/allow-prototype-access": "^1.0.5",
"bcrypt": "^5.1.1",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.6",
"cross-env": "^7.0.3",
"express": "^4.18.3",
"express-handlebars": "^7.1.2",
"express-routemap": "^1.6.0",
"express-session": "^1.18.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.2.1",
"mongoose-paginate-v2": "^1.8.0",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"socket.io": "^4.7.4",
"sweetalert2": "^11.10.6",
"http-status-codes": "^2.2.0",
"winston": "^3.8.2",
"nodemailer": "^6.9.1"
}
}