forked from nightscout/cgm-remote-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.85 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "nightscout",
"version": "0.12.3",
"description": "Nightscout acts as a web-based CGM (Continuous Glucose Montinor) to allow multiple caregivers to remotely view a patients glucose data in realtime.",
"license": "AGPL-3.0",
"author": "Nightscout Team",
"homepage": "http://nightscout.github.io/",
"keywords": [
"diabetes",
"continuous glucose management",
"cgm in the cloud",
"cgm",
"dexcom"
],
"repository": {
"type": "git",
"url": "https://github.com/nightscout/cgm-remote-monitor.git"
},
"contributors": [
{
"name": "Nightscout Team",
"url": "https://github.com/nightscout/cgm-remote-monitor/graphs/contributors"
}
],
"bugs": {
"url": "https://github.com/nightscout/cgm-remote-monitor/issues"
},
"scripts": {
"start": "node server.js",
"test": "env-cmd ./test.env mocha --exit tests/*.test.js",
"env": "env",
"postinstall": "webpack --mode production --config webpack.config.js && npm run-script update-buster",
"bundle": "webpack --mode production --config webpack.config.js && npm run-script update-buster",
"bundle-dev": "webpack --mode development --config webpack.config.js && npm run-script update-buster",
"bundle-analyzer": "webpack --mode development --config webpack.config.js --profile --json > stats.json && webpack-bundle-analyzer stats.json",
"update-buster": "node bin/generateCacheBuster.js >tmp/cacheBusterToken",
"coverage": "env-cmd ./test.env nyc mocha --exit tests/*.test.js",
"dev": "env-cmd ./my.env nodemon server.js 0.0.0.0",
"prod": "env-cmd ./my.prod.env node server.js 0.0.0.0"
},
"config": {
"blanket": {
"pattern": [
"tests",
"lib",
"server",
"app",
"static/js"
],
"data-cover-never": [
"node_modules"
]
}
},
"engines": {
"node": "^10.15.2 || ^8.15.1",
"npm": "^6.4.1"
},
"dependencies": {
"async": "^0.9.2",
"body-parser": "^1.18.3",
"bootevent": "0.0.1",
"braces": "^3.0.2",
"compression": "^1.7.4",
"css-loader": "^1.0.1",
"cssmin": "^0.4.3",
"d3": "^3.5.17",
"ejs": "^2.6.1",
"errorhandler": "^1.5.0",
"event-stream": "3.3.4",
"expose-loader": "^0.7.5",
"express": "^4.16.4",
"express-minify": "^1.0.0",
"file-loader": "^3.0.1",
"flot": "^0.8.3",
"heapdump": "^0.3.14",
"helmet": "^3.16.0",
"jquery": "^3.3.1",
"jquery-ui-bundle": "^1.12.1-migrate",
"jquery.tooltips": "^1.0.0",
"js-storage": "^1.0.4",
"jsdom": "~11.11.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"memory-cache": "^0.2.0",
"mime": "^2.4.0",
"minimed-connect-to-nightscout": "^1.2.2",
"moment": "^2.24.0",
"moment-locales-webpack-plugin": "^1.0.7",
"moment-timezone": "^0.5.23",
"moment-timezone-data-webpack-plugin": "^1.1.0",
"mongodb": "^3.2.2",
"mongomock": "^0.1.2",
"node-cache": "^4.2.0",
"parse-duration": "^0.1.1",
"pushover-notifications": "^1.2.0",
"random-token": "0.0.8",
"request": "^2.88.0",
"semver": "^6.0.0",
"share2nightscout-bridge": "^0.2.1",
"shiro-trie": "^0.4.8",
"simple-statistics": "^0.7.0",
"socket.io": "~2.1.1",
"style-loader": "^0.23.1",
"swagger-ui-dist": "^3.22.0",
"swagger-ui-express": "^4.0.7",
"terser": "^3.17.0",
"traverse": "^0.6.6",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"devDependencies": {
"nodemon": "^1.19.0",
"babel-eslint": "^10.0.2",
"benv": "^3.3.0",
"env-cmd": "^8.0.2",
"eslint": "^6.0.1",
"eslint-loader": "^2.1.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nyc": "^14.0.0",
"should": "^13.2.3",
"supertest": "^3.4.2",
"terser-webpack-plugin": "^1.2.3",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-dev-middleware": "^3.7.0",
"webpack-hot-middleware": "^2.25.0"
}
}