-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.64 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
{
"name": "directFHIR",
"version": "0.0.1",
"author": "Richard Braman - FHIR FLY <[email protected]> (https://fly.health/)",
"bin": {
"directfhir": "./src/server.ts"
},
"main": "./src/server.ts",
"dependencies": {
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv-safe": "^8.2.0",
"esbuild": "0.17.17",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"morgan": "^1.10.0",
"path": "^0.12.7",
"util": "^0.12.4",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@swc/core": "^1.2.241",
"@swc/jest": "^0.2.22",
"@types/express": "^4.17.17",
"@types/fhir": "^0.0.35",
"@types/jest": "^28.1.7",
"@types/morgan": "^1.9.9",
"@types/node": "^18.7.9",
"esbuild": "0.17.17",
"esbuild-jest": "^0.5.0",
"esbuild-register": "^3.3.3",
"jest": "^28.1.3",
"memorystream": "^0.3.1",
"mock-fs": "^5.1.4",
"nodemon": "^2.0.19",
"supertest": "^6.2.4",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"scripts": {
"es": "node -r esbuild-register",
"start": "nodemon -T ./src/server.ts",
"build": "esbuild ./src/server.ts --bundle --platform=node --outfile=server-out.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"email": "[email protected]",
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/fhirfly"
},
{
"type": "ethereum",
"url": "0x75341449Dd0e8D696Ca09eD4996a637D2cF1EC57"
}
],
"homepage": "https://github.com/fhirfly/directfhir#readme",
"license": "SEE LICENSE IN LICENSE",
"url": "https://fly.health"
}