-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.34 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
{
"name": "mern-auth-backend",
"version": "1.0.0",
"main": "backend/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "SET NODE_ENV=development&& nodemon backend/index.js",
"start": "SET NODE_ENV=production&& node backend/index.js",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend"
},
"keywords": [
"express-js, javascript, mern, authentication, jwt"
],
"author": "Ghian Carlos Tan",
"license": "MIT",
"description": "This project is a full-featured authentication system built using the MERN stack (MongoDB, Express.js, React, and Node.js). It provides secure user registration, login, and token-based authentication with JWT. The application includes user role management, password encryption, and responsive UI for seamless user experience.",
"type": "module",
"dependencies": {
"@emailjs/nodejs": "^5.0.2",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"jose": "^5.8.0",
"mongoose": "^8.9.4",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/serve-favicon": "^2.5.7",
"nodemon": "^3.1.9"
}
}