forked from Outburn-IL/fume-community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.27 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
{
"name": "fume-fhir-converter",
"version": "2.0.12",
"description": "FHIR-Utilized Mapping Engine - Community",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc -b",
"clean": "rimraf dist",
"lint": "eslint src",
"run": "npm run build && node dist/src/app.js",
"dev": "npm run clean && cross-env NODE_ENV=dev nodemon -w src --exec \"npm run run\"",
"start": "npm run clean && npm run run",
"eslint:fix": "npx eslint --fix .",
"test:debug": "node --inspect-brk --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:integration": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config=jest.integration.js --runInBand",
"prepare": "npm run build && husky",
"semantic-release": "semantic-release",
"prepublishOnly": "npm ci && npm run build"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --cache --fix"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"author": "Outburn Ltd.",
"license": "AGPL-3.0",
"keywords": [
"FHIR",
"FHIR Converter",
"Mapper",
"Mapping Engine",
"HL7",
"V2 to FHIR",
"CSV to FHIR"
],
"homepage": "https://fume.health",
"repository": {
"type": "git",
"url": "git+https://github.com/Outburn-IL/fume-community.git"
},
"dependencies": {
"axios": "^1.6.7",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"fhir-package-loader": "^0.2.0",
"fs-extra": "^11.1.1",
"hl7-dictionary": "^1.0.1",
"hl7js": "^0.0.6",
"js-sha256": "^0.9.0",
"jsonata": "^2.0.2",
"uuid-by-string": "^4.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@commitlint/types": "^19.0.3",
"@semantic-release/git": "^10.0.1",
"@stylistic/eslint-plugin-js": "^1.7.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"args": "^5.0.3",
"cross-env": "^7.0.3",
"detect-indent": "^7.0.1",
"detect-newline": "^4.0.1",
"docker-compose": "^0.24.6",
"eslint": "^8.28.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^12.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-mock-axios": "^4.7.3",
"lint-staged": "^15.2.2",
"nodemon": "^2.0.20",
"pre-commit": "^1.2.2",
"rimraf": "^5.0.5",
"semantic-release": "^23.0.2",
"semantic-release-unsquash": "^0.2.0",
"semver": "^7.5.4",
"simple-git": "^3.22.0",
"supertest": "^6.3.4",
"typescript": "^4.9.3"
},
"exports": {
".": "./dist/src/index.js"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "mjs,js,ts,json,env"
}
}