-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.3 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
{
"name": "dermo-monorepo",
"version": "1.0.0",
"private": true,
"description": "Dermo — Managed AI Employee for Dermatology & Aesthetic Clinics (Monorepo)",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "npm run dev --workspaces --if-present",
"dev:api": "npm run dev --workspace=apps/api",
"dev:web": "npm run dev --workspace=apps/web",
"build": "npm run build --workspaces --if-present",
"build:api": "npm run build --workspace=apps/api",
"build:web": "npm run build --workspace=apps/web",
"type-check": "npm run type-check --workspaces --if-present",
"test": "npm run test --workspace=apps/api",
"test:eval": "npm run test:eval --workspace=apps/api",
"test:all": "npm run test:all --workspace=apps/api",
"seed": "npm run seed --workspace=apps/api",
"clean": "node -e \"const fs=require('fs'); ['node_modules','apps/api/dist','apps/web/.next','apps/web/dist'].forEach(d=>{if(fs.existsSync(d)) fs.rmSync(d,{recursive:true,force:true})})\""
},
"keywords": [
"dermo",
"whatsapp-ai",
"healthcare",
"langchain",
"gemini",
"pgvector",
"razorpay",
"nextjs",
"express"
],
"author": "Dermo Team",
"license": "MIT",
"devDependencies": {
"concurrently": "^9.1.2",
"typescript": "^5.8.2"
}
}