-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.09 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.09 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
{
"name": "Healio",
"version": "1.0.0",
"description": "AI-Enabled Smart Healthcare Appointment & Telemedicine Platform",
"main": "index.js",
"scripts": {
"dependency:services": "mvn clean install -DskipTests",
"dependency:client": "cd client/healio && pnpm install",
"dependency": "pnpm run dependency:services && pnpm run dependency:client",
"build": "mvn clean package -DskipTests",
"build:client": "cd client/healio && pnpm run build",
"build:docker": "pnpm run build && docker compose build",
"start": "node scripts/sequential-startup.js",
"dev": "node scripts/sequential-startup.js",
"stop": "pkill -f 'mvn spring-boot:run' || true",
"test": "pnpm run mvn:test",
"mvn:install": "mvn clean install -DskipTests",
"mvn:build": "mvn clean package -DskipTests",
"mvn:test": "mvn clean test"
},
"keywords": [
"healthcare",
"telemedicine",
"appointments",
"spring-boot",
"microservices"
],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^9.2.1"
},
"dependencies": {
"dotenv": "^17.4.1"
}
}