-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 774 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "banking-app",
"version": "1.0.0",
"description": "Banking application built with React, Node.js, MongoDB, and Azure deployment",
"scripts": {
"dev": "concurrently \"npm run backend:dev\" \"npm run frontend:dev\"",
"backend:dev": "cd backend && npm run dev",
"frontend:dev": "cd frontend && npm run dev",
"build": "npm run backend:build && npm run frontend:build",
"backend:build": "cd backend && npm run build",
"frontend:build": "cd frontend && npm run build",
"test": "npm run backend:test && npm run frontend:test",
"backend:test": "cd backend && npm test",
"frontend:test": "cd frontend && npm test"
},
"workspaces": [
"backend",
"frontend"
],
"devDependencies": {
"concurrently": "^8.2.2"
}
}