-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "mkiba-fullstack",
"version": "1.0.0",
"description": "MKiba Fintech Platform - Full Stack Application",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd mkiba-backend && python -m uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload",
"dev:frontend": "cd mkiba-frontend && npm run dev",
"build": "npm run build:frontend",
"build:frontend": "cd mkiba-frontend && npm run build",
"start": "npm run start:frontend",
"start:frontend": "cd mkiba-frontend && npm start",
"test": "npm run test:frontend",
"test:frontend": "cd mkiba-frontend && npm test",
"lint": "npm run lint:frontend",
"lint:frontend": "cd mkiba-frontend && npm run lint",
"install:all": "npm install && cd mkiba-frontend && npm install",
"clean": "cd mkiba-frontend && rm -rf node_modules .next && npm install"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"keywords": [
"fintech",
"mobile-money",
"investment",
"kenya",
"nextjs",
"fastapi",
"python",
"typescript"
],
"author": "MKiba Team",
"license": "MIT"
}