-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.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
{
"name": "fhir-auth-server",
"version": "1.0.0",
"description": "A robust and scalable authentication server for FHIR based on SMART on FHIR standards",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "node build.js",
"serve": "node ./dist/server.js",
"watch": "nodemon ./dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zemantic/FHIR-auth-server.git"
},
"keywords": [
"FHIR",
"SMART on FHIR",
"HAPI",
"HAPI FHIR"
],
"author": "Rukshan Ranatunge <[email protected]>",
"license": "AGPL v3",
"bugs": {
"url": "https://github.com/zemantic/FHIR-auth-server/issues"
},
"homepage": "http://zemantic.co/fhir-auth",
"dependencies": {
"@prisma/client": "^5.0.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.7.1",
"jose": "^4.14.4",
"morgan": "^1.10.0",
"node-fetch": "^3.3.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node": "^20.4.2",
"@types/passport": "^1.0.12",
"jest": "^29.5.0",
"esbuild": "^0.18.14",
"nodemon": "^2.0.22",
"prisma": "^5.0.0"
}
}