-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.41 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.41 KB
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
{
"name": "taskx",
"version": "1.0.0",
"description": "TaskX - Where Teams Get Things Done. Professional MERN Stack Task Management System - Developed by Sumant Yadav",
"main": "server/index.js",
"author": {
"name": "Sumant Yadav",
"email": "sumantyadav3086@gmail.com",
"phone": "+91 9599617479"
},
"scripts": {
"server": "nodemon server/index.js",
"client": "npm run dev --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "cd client && npm install && npm run build",
"install-all": "npm install && cd client && npm install",
"start": "node server/index.js"
},
"keywords": [
"mern-stack",
"task-management",
"project-management",
"real-time-collaboration",
"websocket",
"jwt-authentication",
"kanban-board",
"react",
"nodejs",
"mongodb-atlas",
"redux-toolkit",
"tailwindcss",
"socket-io",
"express",
"full-stack"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sumantyadav/task-management-app"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.0",
"multer": "^2.0.2",
"socket.io": "^4.6.0"
},
"devDependencies": {
"concurrently": "^8.2.2",
"nodemon": "^3.0.1"
}
}