-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1021 Bytes
/
package.json
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
{
"name": "clinics-patient-dashboard-3000",
"version": "1.0.0",
"description": "Just a full-stack demo dashboard for managing patients per clinic",
"main": "index.js",
"scripts": {
"start:backend": "cd backend && npm start",
"start:frontend": "cd frontend && npm start",
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"install:frontend": "cd frontend && npm install",
"install:backend": "cd backend && npm install",
"postinstall": "(npm run install:frontend) && (npm run install:backend)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ultim8k/clinics-patient-dashboard-3000.git"
},
"author": "Konstantinos Kapenekakis - [email protected]",
"license": "GPL-2.0-only",
"bugs": {
"url": "https://github.com/ultim8k/clinics-patient-dashboard-3000/issues"
},
"homepage": "https://github.com/ultim8k/clinics-patient-dashboard-3000#readme",
"devDependencies": {
"concurrently": "^7.6.0"
},
"dependencies": {}
}