-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.76 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "crm-app",
"private": true,
"version": "1.0.3",
"description": "It is an app developed for resolving customer queries using backend libraries viz. express, bcrypt, jsonwebtoken, dotenv, mongoose, etc.",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node -r dotenv/config src/index.js",
"dev": "nodemon -r dotenv/config src/index.js"
},
"keywords": [
"nodejs",
"bcrypt",
"express",
"dotenv",
"jsonwebtoken",
"mongoose",
"nodemon",
"morgan",
"cors",
"express-rate-limit",
"validator"
],
"author": "Nilanjan Haldar",
"license": "ISC",
"dependencies": {
"@logtail/node": "^0.5.0",
"@logtail/winston": "^0.5.2",
"axios": "^1.8.1",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.7",
"cookie-session": "^2.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^5.0.1",
"express-fileupload": "^1.5.1",
"express-rate-limit": "^7.5.0",
"express-session": "^1.18.1",
"express-winston": "^4.2.0",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"mongodb-memory-server": "^10.1.4",
"mongoose": "^8.12.0",
"morgan": "^1.10.0",
"nodemailer": "^6.10.0",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"validator": "^13.12.0",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"supertest": "^7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nil2022/CRM_App.git"
},
"bugs": {
"url": "https://github.com/nil2022/CRM_App/issues"
},
"homepage": "https://github.com/nil2022/CRM_App#readme"
}