-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
52
53
54
55
56
57
58
{
"name": "entrega16",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start:dev": "cross-env NODE_ENV=dev nodemon ./src/app",
"start:qa": "cross-env NODE_ENV=qa nodemon ./src/app",
"start:prod": "cross-env NODE_ENV=production nodemon ./src/app",
"test": "jest --config ./jest.config.json",
"test:watch": "npm run test -- ----watchAll"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"express-compression": "^1.0.2",
"express-handlebars": "^7.1.2",
"express-routemap": "^1.6.0",
"express-session": "^1.18.0",
"express-socket.io-session": "^1.3.5",
"express-validator": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.4.0",
"mongoose-paginate-v2": "^1.8.1",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.13",
"nodemon": "^3.1.0",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"socket.io": "^4.7.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"twilio": "^5.0.3",
"winston": "^3.13.0"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"chai": "^4.3.7",
"jest": "^29.7.0",
"mocha": "^10.4.0",
"nodemon": "^3.1.0",
"supertest": "^7.0.0"
}
}