-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 787 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "nullpointerexception-monorepo",
"version": "1.0.0",
"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",
"clean:all": "rm -rf node_modules && cd backend && rm -rf node_modules && cd ../frontend && rm -rf node_modules",
"build": "cd frontend && npm run build",
"start": "concurrently \"cd backend && npm start\" \"cd frontend && npm start\""
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"description": "Full-stack application with backend and frontend",
"author": "",
"license": "ISC"
}