-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
37 lines (37 loc) · 1.33 KB
/
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
29
30
31
32
33
34
35
36
37
{
"name": "fhir-server-dashboard",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/asherdale/fhir-server-dashboard"
},
"description": "The FHIR Server Dashboard is a standalone app that presents a human-readable representation of the data in a FHIR server. Built with Node.js, d3, and Plotly, the dashboard consists of intuitive visualizations that enable clinicians and users to quickly comprehend what a FHIR server contains.",
"main": "server/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"deploy-gh": "git subtree push --prefix client origin gh-pages",
"reset-gh-pages": "git push origin `git subtree split --prefix output gh-pages`:gh-pages --force",
"build": "./node_modules/.bin/tsc --outFile client/visualize.js client/visualize.ts",
"aggregate": "node server/index.js"
},
"keywords": [
"FHIR",
"server",
"dashboard",
"smart-on-fhir"
],
"author": "Asher Dale <asher@dales.org>",
"license": "Apache-2.0",
"dependencies": {
"commander": "^2.11.0",
"request": "^2.81.0"
},
"devDependencies": {
"eslint": "^4.2.0",
"typescript": "^2.4.2"
}
}