-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 3.09 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
108
109
110
111
112
113
114
115
{
"name": "nightscout-fhir-connect",
"version": "1.4.29",
"description": "Nightscout REST API provider for FHIR PHRs",
"repository": "https://github.com/sensotrend/nightscout-fi",
"dependencies": {
"@awaitjs/express": "^0.9.0",
"@githubprimer/octicons-react": "^8.5.0",
"@sendgrid/mail": "^7.5.0",
"ajv": "^8.12.0",
"async-csv": "^2.1.3",
"axios": "^0.24.0",
"basic-auth": "^2.0.1",
"body-parser": "^1.19.0",
"connect-mongo": "^3.2.0",
"cookie-session": "^2.0.0-rc.1",
"cors": "^2.8.5",
"ejs": "^3.1.5",
"esm": "^3.2.23",
"express": "^4.17.1",
"express-session": "^1.17.2",
"fhir-kit-client": "^1.9.2",
"formik": "^2.2.9",
"fs-extra": "^10.0.0",
"jose": "^4.11.2",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.20",
"moment": "^2.24.0",
"mongoose": "^5.13.12",
"morgan": "^1.9.1",
"nanoid": "^3.1.30",
"node-cache": "^5.1.2",
"node-sass": "^8.0.0",
"openid-client": "^4.9.1",
"promise-parallel-throttle": "^3.3.0",
"qrcode": "^1.4.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"react-scripts": "^4.0.3",
"sensotrend-converter": "git+https://github.com/Sensotrend/sensotrend-converter.git#nightscout",
"simple-oauth2": "^4.2.0",
"uuid": "^8.3.2",
"winston": "^3.2.1",
"yargs": "^17.2.1"
},
"optionalDependencies": {
"fsevents": "^1.2.9"
},
"devDependencies": {
"concurrently": "^6.3.0",
"env-cmd": "^8.0.2",
"istanbul": "^0.4.5",
"mocha": "^8.4.0",
"nodemon": "^2.0.14",
"nyc": "^15.1.0",
"should": "^13.2.3",
"source-map-support": "^0.5.20",
"supertest": "^6.3.3"
},
"esm": {
"cjs": true,
"sourceMap": false,
"cache": false
},
"nyc": {
"all": false,
"sourceMap": false,
"instrument": true,
"cache": false,
"include": [
"lib/**/*.js",
"*.js"
],
"exclude": [
"coverage/**",
"packages/*/test/**",
"test/**",
"test{,-*}.js",
"**/*{.,-}test.js",
"**/__tests__/**",
"**/node_modules/**",
"**/babel.config.js"
],
"require": [
"esm"
]
},
"eslintConfig": {
"extends": "react-app"
},
"scripts": {
"build": "react-scripts build",
"server": "env-cmd ./my.env nodemon esmloader.js",
"client": "react-scripts start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"lint": "./node_modules/eslint/bin/eslint.js src/ lib/",
"prestart": "react-scripts build",
"start": "node esmloader.js",
"test": "env-cmd ./test.env react-scripts test --env=jsdom && env-cmd ./test.env mocha --exit --timeout 8000 --require esm tests/*.test.js",
"coverage": "env-cmd ./test.env nyc mocha --exit --timeout 8000 --require esm tests/*.test.js",
"coverage-html": "rm -rf .nyc_output && npm run-script coverage && nyc report --reporter html && nyc report --reporter text-lcov > coverage/codecov.log"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 10",
"not op_mini all"
],
"nodemonConfig": {
"ignore": [
"uploads/*"
]
}
}