-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 754 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 754 Bytes
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
{
"name": "task-manager-saas",
"version": "1.0.0",
"description": "Complete Task Manager SaaS with React, Node.js, MongoDB",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd backend && npm run dev",
"client": "cd frontend && npm run dev",
"install-all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"build": "cd frontend && npm run build",
"start": "cd backend && npm start"
},
"keywords": [
"task",
"manager",
"saas",
"react",
"nodejs"
],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}