-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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
{
"name": "radx-mars-demo",
"version": "2.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 . --ext .ts",
"start": "npm run build && node dist/index.js",
"results": "npm run build && node dist/results.js",
"site": "npm run build && node dist/app.js"
},
"keywords": [],
"author": "Meadows Design, Andy Meadows",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.440.0",
"aims-mars-lib": "^2.0.0",
"express": "^4.21.1",
"nist-mars-lib": "^1.0.0",
"radx-mars-lib": "^2.3.0",
"react-native-fetch-blob": "^0.10.8",
"reportstream-mars-lib": "^2.0.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@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"
}
}