-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 776 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "lead-pipeline-platform",
"version": "1.0.0",
"description": "Lead management and automation testing dashboard",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"install:all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"build": "cd frontend && npm install && npm run build && cd ../backend && npm install",
"start": "cd backend && node src/index.js",
"postinstall": "cd frontend && npm install && npm run build && cd ../backend && npm install"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=18.0.0"
}
}