-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.4 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": "dicomweb-server-nosql",
"version": "0.0.1",
"description": "A self contained easy to use archive with DICOMWEB support with mongodb backend",
"main": "app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"import": "node src/import.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/knopkem/dicomweb-pacs.git"
},
"keywords": [
"DICOMWEB",
"PACS",
"ARCHIVE",
"DIMSE",
"DICOM",
"STORE",
"MOVE",
"GET",
"FIND",
"SCP",
"SCU",
"OHIF",
"VIEWER",
"ORTHANC",
"DCMTK",
"DCM4CHEE",
"PACSONE",
"CONQUEST"
],
"author": "Michael Knopke",
"license": "MIT",
"dependencies": {
"config": "^3.3.2",
"dicom": "^0.4.4",
"dicom-data-dictionary": "^0.3.1",
"dicom-parser": "^1.8.7",
"fastify": "^3.5.1",
"fastify-cors": "^4.1.0",
"fastify-static": "^4.2.4",
"mongodb": "^3.6.3",
"recursive-readdir-async": "^1.1.8",
"simple-node-logger": "^18.12.24"
},
"devDependencies": {
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"nodemon": "^2.0.7",
"prettier": "^1.19.1"
}
}