forked from NIBIB/radx-mars-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.24 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
{
"name": "radx-mars-demo",
"version": "1.0.0",
"description": "MARS Demo for submitting lab results to AIMS (and ReportStream).",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": true,
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build",
"lint": "eslint .",
"start": "npm run build && node dist/index.js"
},
"keywords": [],
"author": "Meadows Design, Andy Meadows",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.440.0",
"react-native-fetch-blob": "^0.10.8",
"radx-mars-lib": "git+https://github.com/NIBIB/radx-mars-lib.git#main",
"reportstream-mars-lib": git+https://github.com/NIBIB/reportstream-mars-lib.git#main",
"aims-mars-lib": "git+https://github.com/NIBIB/aims-mars-lib.git#main"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/react-native-fetch-blob": "^0.10.7",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"eslint": "^8.53.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.4.0",
"typescript": "^5.2.2"
}
}