-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 783 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 783 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": "payflow-hc",
"version": "1.0.0",
"description": "Home Credit PayFlow - B2B2C Payroll Platform",
"private": true,
"workspaces": [
"frontend"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\" --names \"API,WEB\" --prefix-colors \"cyan,magenta\"",
"dev:backend": "cd backend && uvicorn app.main:app --reload --host 0.0.0.0 --port 8000",
"dev:frontend": "cd frontend && npm run dev",
"build": "cd frontend && npm run build",
"start": "cd frontend && npm run start",
"install:all": "npm install && cd frontend && npm install && cd ../backend && pip install -r requirements.txt"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"dependencies": {
"uvicorn": "^0.0.1-security"
}
}