-
-
Notifications
You must be signed in to change notification settings - Fork 257
/
package.json
60 lines (60 loc) · 1.61 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
{
"name": "nightscout-librelink-up",
"version": "2.7.3",
"description": "Script written in TypeScript that uploads CGM readings from LibreLink Up to Nightscout",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"start": "npx ts-node --transpile-only src/index.ts",
"start-dev": "npx ts-node src/index.ts",
"start-heroku": "node dist/index.js",
"lint": "npx eslint . --fix",
"test": "jest --coverage --forceExit",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timoschlueter/nightscout-librelink-up.git"
},
"keywords": [
"nightscout",
"cgm",
"diabetes",
"blood",
"sugar",
"freestyle",
"libre",
"librelink",
"up",
"uploader"
],
"author": "Timo Schlueter",
"license": "MIT",
"bugs": {
"url": "https://github.com/timoschlueter/nightscout-librelink-up/issues"
},
"homepage": "https://github.com/timoschlueter/nightscout-librelink-up#readme",
"dependencies": {
"axios": "~1.7.7",
"axios-mock-adapter": "~2.1.0",
"http-cookie-agent": "~6.0.6",
"jwt-decode": "~4.0.0",
"node-cron": "~3.0.3",
"tough-cookie": "~5.0.0",
"winston": "~3.17.0"
},
"devDependencies": {
"@tsconfig/node20": "~20.1.4",
"@types/jest": "~29.5.14",
"@types/node": "~22.9.0",
"@types/node-cron": "~3.0.11",
"@types/tough-cookie": "~4.0.5",
"@typescript-eslint/eslint-plugin": "~8.14.0",
"@typescript-eslint/parser": "~8.14.0",
"eslint": "~9.14.0",
"jest": "~29.7.0",
"ts-jest": "~29.2.5",
"ts-node": "~10.9.2",
"typescript": "~5.6.3"
}
}