-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.42 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
{
"name": "MERN-User-Manager",
"version": "1.0.0",
"description": "A simple MERN Stack user management application.",
"type": "module",
"main": "index.js",
"scripts": {
"start": "npx alwinsimon && node backend/server.js",
"server": "nodemon backend/server.js",
"client": "npm run dev --prefix frontend",
"dev": " concurrently \"npm run server\" \"npm run client\" ",
"app": " concurrently \"npm run start\" \"npm run client\" ",
"install-dependencies": "npm install && cd frontend && npm install",
"build": "cd frontend && npm run build",
"production": "npx alwinsimon && npm run build && node backend/server.js"
},
"keywords": [],
"author": "Dr. Alwin Simon",
"license": "MIT",
"dependencies": {
"alwinsimon": "^1.0.1",
"base-auth-handler": "^1.0.3",
"base-error-handler": "^1.0.3",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.1.4",
"express-slow-down": "^2.0.1",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.4.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"path": "^0.12.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"winston": "^3.11.0",
"winston-mongodb": "^5.1.1"
},
"devDependencies": {
"concurrently": "^8.2.0",
"nodemon": "^3.0.1"
}
}