-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 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
{
"name": "e-commerce",
"version": "1.0.0",
"description": "An open-source e-commerce platform built with Node.js, Express, MongoDB, and Passport for JWT-based authentication using HTTP-only cookies, refresh tokens, and access tokens.",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js"
},
"keywords": [
"e-commerce",
"nodejs",
"express",
"mongodb",
"jwt",
"authentication",
"http-only-cookies",
"refresh-token",
"access-token",
"passport",
"open-source"
],
"author": "Open Source Contributors",
"license": "MIT",
"dependencies": {
"auto-bind": "^4.0.0",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.4.0",
"helmet": "^7.1.0",
"http-errors": "^2.0.0",
"http-status-codes": "^2.2.0",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.1.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"slugify": "^1.6.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"nodemon": "^2.0.22"
}
}