-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.21 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
{
"name": "fhirtogether-scheduling-synapse",
"version": "1.0.0",
"description": "FHIR-compliant gateway and test server for schedule and appointment availability",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"generate-data": "tsx src/examples/generateBusyOffice.ts",
"import-seed": "tsx src/examples/importSeedData.ts",
"hl7-test": "tsx src/examples/testHL7.ts",
"test": "jest",
"lint": "eslint src --ext .ts"
},
"keywords": [
"fhir",
"hl7",
"scheduling",
"appointments",
"healthcare"
],
"author": "MieWeb",
"license": "MIT",
"dependencies": {
"@fastify/cors": "^8.5.0",
"@fastify/static": "^6.12.0",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^2.1.0",
"better-sqlite3": "^9.2.2",
"dotenv": "^16.3.1",
"fastify": "^4.25.2",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}