-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 770 Bytes
/
package.json
File metadata and controls
18 lines (18 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "web-pdf-gen",
"version": "1.0.0",
"description": "HTML to PDF conversion system with real-time progress tracking",
"scripts": {
"dev": "concurrently \"npm run backend:dev\" \"npm run frontend:dev\"",
"backend:dev": "cd backend && npm run dev",
"frontend:dev": "cd frontend && npm start",
"install:all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"build": "cd frontend && npm run build && cd ../backend && npm run build",
"start": "cd backend && npm start",
"test": "cd backend && npm test && cd ../frontend && npm test",
"clean": "rm -rf backend/dist backend/node_modules frontend/build frontend/node_modules node_modules"
},
"devDependencies": {
"concurrently": "^7.6.0"
}
}