-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 891 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 891 Bytes
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
{
"name": "lablens",
"version": "1.0.0",
"description": "Professional-grade lab report analyzer specialized for AHS reports",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
"client:dev": "cd client && npm run dev",
"client:build": "cd client && npm run build",
"client:preview": "cd client && npm run preview",
"server:dev": "cd server && npm run dev",
"server:start": "cd server && npm start",
"install:all": "npm install && cd client && npm install && cd ../server && npm install",
"build": "npm run client:build",
"start": "npm run server:start"
},
"keywords": [
"healthcare",
"lab-reports",
"ocr",
"lablens",
"ahs",
"medical-analysis"
],
"author": "LabLens Development Team",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}