-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
{
"name": "flowsheet-lhc",
"version": "0.1.5",
"description": "A flowsheet app that connects to a FHIR server and display patient data in a flowsheet format.",
"private": true,
"author": "Ye Wang <[email protected]>",
"devDependencies": {
"@testing-library/react": "~11.0.0",
"axios": "^0.21.4",
"convert-excel-to-json": "~1.7.0",
"gh-pages": "~3.1.0",
"jshint": "^2.13.6",
"react-scripts": "^4.0.3",
"react-test-renderer": "^16.13.1",
"source-map-explorer": "~2.5.0"
},
"dependencies": {
"@lhncbc/ucum-lhc": "2.4.1",
"antd": "^3.26.19",
"deep-copy": "^1.4.2",
"fhir.js": "git+https://github.com/akanduru/fhir.js.git",
"lodash": "^4.17.20",
"moment": "^2.29.4",
"raf-schd": "^3.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-sparklines": "git+https://github.com/LHNCBC/react-sparklines-lhc.git",
"react-window": "git+https://github.com/LHNCBC/react-window-lhc.git#with-fixed-columns-and-rows",
"victory": "^31.2.0"
},
"scripts": {
"start": "react-scripts start",
"start2": "PORT=80 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom --watchAll=false",
"update-snapshot": "npm test -- -u",
"eject": "react-scripts eject",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"browserslist": {
"production": [
"defaults",
"not dead",
"not op_mini all"
],
"development": [
"defaults",
"not dead",
"not op_mini all"
]
}
}