-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.69 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
36
37
38
39
40
41
42
{
"name": "vizinn-monorepo",
"private": true,
"version": "1.0.0",
"description": "Vizinn monorepo - Platform that connects users in specific regions for buying, selling, and offering services",
"scripts": {
"dev:backend": "cd apps/backend && poetry install && poetry run uvicorn backend.app:app --reload",
"dev:frontend": "cd apps/frontend-app && npm run start",
"dev:app": "cd apps/frontend-app && npm run start",
"dev": "pnpm -r --workspace-concurrency Infinity run dev",
"install:frontend": "cd apps/frontend-app && npm install",
"start": "echo \"Starting frontend and backend in separate terminals for best visibility\" && pnpm dev:frontend",
"start:alt": "concurrently \"pnpm dev:backend\" \"pnpm dev:frontend\"",
"start:unified": "node scripts/start-servers.js",
"start:manual": "echo \"Please run these commands in separate terminals:\" && echo \"1. pnpm dev:backend\" && echo \"2. pnpm dev:frontend\"",
"build:app": "cd apps/frontend-app && npx expo build",
"build": "pnpm -r --workspace-concurrency Infinity run build",
"lint:app": "cd apps/frontend-app && npm run lint",
"test:app": "cd apps/frontend-app && npm run test"
},
"keywords": [
"marketplace",
"community",
"local-economy",
"ecommerce",
"services",
"react-native",
"fastapi",
"monorepo"
],
"author": "Vizinn Team",
"license": "ISC",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0",
"python": ">=3.13.0"
},
"devDependencies": {
"concurrently": "^9.1.2"
},
"packageManager": "pnpm@9.15.3+sha512.1f79bc245a66eb0b07c5d4d83131240774642caaa86ef7d0434ab47c0d16f66b04e21e0c086eb61e62c77efc4d7f7ec071afad3796af64892fae66509173893a"
}