-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.16 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.16 KB
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
{
"name": "@tidepool/export",
"version": "1.7.6-WEB-3841-pdf-bolus-limit.1",
"main": "app.mjs",
"repository": {
"type": "git",
"url": "https://github.com/tidepool-org/data-export-service-app.git"
},
"type": "module",
"scripts": {
"lint": "eslint --cache --format=node_modules/eslint-formatter-pretty .",
"lint-fix": "yarn run lint -- --fix",
"start": "node ./dist/app.cjs",
"test": "jest",
"build": "node esbuild.config.js",
"build:watch": "node esbuild.config.watch.js",
"start:dev": "yarn build:watch & nodemon --watch dist --exec 'node --enable-source-maps dist/app.cjs'"
},
"license": "BSD-2-Clause",
"description": "Service to export data from the Tidepool to various file formats",
"author": "Lennart Goedhart <lennart@tidepool.org>",
"devDependencies": {
"@babel/core": "7.23.0",
"@babel/eslint-parser": "7.22.15",
"@babel/preset-env": "7.25.4",
"@godaddy/terminus": "4.12.1",
"@tidepool/data-tools": "2.5.0",
"@tidepool/viz": "1.53.0-rc.1",
"axios": "1.8.2",
"babel-core": "7.0.0-bridge.0",
"blob-stream": "0.1.3",
"body-parser": "1.20.3",
"bunyan": "1.8.13",
"esbuild": "0.23.1",
"eslint": "8.56.0",
"eslint-config-airbnb": "19.0.4",
"eslint-formatter-pretty": "5.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-lodash": "7.4.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"express": "4.21.2",
"jest": "29.7.0",
"lodash": "4.17.21",
"moment": "2.29.4",
"moment-timezone": "0.5.43",
"nodemon": "3.1.4",
"pdfkit": "0.15.0",
"prom-client": "14.2.0",
"zip-to-tz": "1.1.0"
},
"resolutions": {
"crypto-js": "4.2.0",
"serialize-javascript": "6.0.2",
"sundial": "1.7.4"
},
"packageManager": "yarn@3.6.4",
"jest": {
"transform": {
"^.+\\.m?jsx?$": "babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/(?!(d3-|@tidepool/data-tools|@tidepool/viz|internmap|reductio)).+\\.js$"
],
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"mjs"
]
}
}