-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 859 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 859 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
31
32
33
34
{
"name": "fhir-visualizers",
"version": "0.0.6",
"homepage": "https://github.com/synthetichealth/fhir-visualizers",
"description": "Simple React-based FHIR Visualizers",
"license": "Apache-2.0",
"files": [
"LICENSE",
"build/index.js"
],
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c"
},
"dependencies": {
"bootstrap": "^5.0.1",
"moment": "^2.24.0"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"react": ">=16.9.0",
"react-dom": ">=16.9.0",
"rollup": "^2.51.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-postcss": "^4.0.0"
}
}