-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.06 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.06 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "rebin-pro",
"version": "1.0.0",
"description": "AI-Powered Waste Sorting Application",
"private": true,
"workspaces": [
"frontend",
"cloudflare-worker"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\" \"npm run dev:cv-mock\"",
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && source venv/bin/activate && python -m uvicorn main:app --reload --host 0.0.0.0 --port 8000",
"dev:cv-mock": "cd services/cv-mock && source venv/bin/activate && python -m uvicorn app:app --reload --host 0.0.0.0 --port 9000",
"build": "npm run build:frontend && npm run build:worker",
"build:frontend": "cd frontend && npm run build",
"build:worker": "cd cloudflare-worker && npm run build",
"start": "docker-compose up --build",
"start:prod": "docker-compose -f docker-compose.prod.yml up -d",
"stop": "docker-compose down",
"clean": "docker-compose down -v --rmi all",
"install:all": "npm install && cd frontend && npm install && cd ../cloudflare-worker && npm install",
"lint": "npm run lint:frontend && npm run lint:worker",
"lint:frontend": "cd frontend && npm run lint",
"lint:worker": "cd cloudflare-worker && npm run lint",
"test": "npm run test:frontend && npm run test:backend",
"test:frontend": "cd frontend && npm test",
"test:backend": "cd backend && python -m pytest tests/",
"setup": "npm run install:all && npm run setup:env",
"setup:env": "cp env.example .env && cp frontend/env.example frontend/.env && cp backend/env.example backend/.env"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"overrides": {
"axios": "^1.12.2",
"@supabase/supabase-js": "^2.75.1",
"eslint": "^9.37.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/rebin-pro.git"
},
"keywords": [
"ai",
"waste-sorting",
"recycling",
"computer-vision",
"sustainability"
],
"author": "Your Name",
"license": "MIT"
}