-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 894 Bytes
/
package.json
File metadata and controls
18 lines (18 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "manageease-complete-fullstack",
"version": "1.0.0",
"description": "Complete MERN stack task management application with TypeScript",
"scripts": {
"dev": "concurrently \"cd backend && npm run dev\" \"cd frontend && npm run dev\"",
"install:all": "echo '📦 Installing backend dependencies...' && cd backend && npm install && echo '📦 Installing frontend dependencies...' && cd ../frontend && npm install && echo '✅ All dependencies installed successfully!'",
"build:all": "cd backend && npm run build && cd ../frontend && npm run build",
"start:backend": "cd backend && npm start",
"start:frontend": "cd frontend && npm run preview"
},
"devDependencies": {
"concurrently": "^8.2.0"
},
"keywords": ["mern-stack", "typescript", "task-management", "react", "nodejs", "express", "mongodb"],
"author": "ManageEase Team",
"license": "MIT"
}