-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 3.03 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "fhir-starter",
"version": "0.17.1",
"description": "Reausable and composable FHIR components built with React and Material UI. Normative maturity level 5 resources only.",
"homepage": "http://github.com/symptomatic/fhir-starter",
"repository": "symptomatic/fhir-starter",
"author": "Abigail Watson <abigail@symptomatic.io>",
"contributors": [
"Konstantin Tarkus <hello@tarkus.me>",
"Vladimir Kutepov <frenzzy.man@gmail.com>"
],
"license": "MIT",
"keywords": [
"fhir",
"hl7",
"material",
"ui",
"materialui",
"react",
"dstu2",
"stu3",
"r4",
"normative"
],
"main": "dist/bundle.js",
"style": "dist/styles.css",
"files": [
"dist"
],
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb-base"
},
"dependencies": {
"@babel/core": "^7.12.9",
"@babel/node": "^7.12.6",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/runtime": "^7.12.5",
"@material-ui/icons": "^4.11.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"babel-loader": "^8.0.6",
"lodash": "4.17.21",
"lodash-es": "4.17.15",
"moment": "2.24.0",
"prop-types": "15.7.2",
"react-proptypes": "^1.0.0",
"regjsparser": "0.6.4",
"rollup-plugin-node-resolve": "^5.2.0",
"typescript": "^4.0.3"
},
"deprecatedDependencies": {},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/register": "^7.6.2",
"babel-eslint": "^10.0.3",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-external-helpers": "^6.22.0",
"builtin-modules": "^3.1.0",
"chai": "^4.2.0",
"coveralls": "^2.11.14",
"del": "^2.2.2",
"easystatic": "^0.1.12",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"i": "^0.3.6",
"istanbul": "^1.1.0-alpha.1",
"jest": "24.9.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"rollup": "2.79.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-replace": "^2.2.0",
"sinon": "^7.5.0",
"styled-jsx": "^3.2.1"
},
"peerDependencies": {
"@material-ui/core": "4.12.4",
"@material-ui/utils": "4.11.3",
"lodash": "4.17.21",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons-kit": "1.3.1",
"winston": "3.2.1"
},
"optionalDependencies": {
"fsevents": "2.2.1"
},
"scripts": {
"lint": "eslint src test tools",
"test": "mocha --require @babel/register",
"test:watch": "mocha --require @babel/register --reporter min --watch",
"test:cover": "nyc npm test",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "rollup -c",
"publish:docs": "easystatic deploy docs --repo kriasoft/babel-starter-kit",
"publish": "npm install",
"start": "easystatic start docs"
}
}