-
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) · 840 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 840 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": "sistercheck-monorepo",
"version": "1.0.0",
"description": "SisterCheck - A comprehensive healthcare application with Flutter frontend, Node.js API, and Python ML backend",
"private": true,
"workspaces": [
"apps/api"
],
"scripts": {
"dev:api": "cd apps/api && npm run dev",
"dev:python": "cd apps/python && python api_server.py",
"build:api": "cd apps/api && npm run build",
"install:all": "npm install && cd apps/api && npm install",
"test:api": "cd apps/api && npm test",
"start:all": "concurrently \"npm run dev:api\" \"npm run dev:python\""
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"keywords": [
"healthcare",
"flutter",
"nodejs",
"python",
"machine-learning",
"risk-assessment"
],
"author": "SisterCheck Team",
"license": "MIT"
}