-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
63 lines (63 loc) · 1.42 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
{
"name": "dicomweb-pacs",
"version": "1.0.3",
"description": "A self contained easy to use PACS with DICOMWEB and DIMSE service support",
"main": "app.js",
"scripts": {
"start": "node src/app.js",
"import": "node src/storescu.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",
"bin": {
"dicomweb-pacs": "bin/dicomweb-pacs"
},
"bugs": {
"url": "https://github.com/knopkem/dicomweb-pacs/issues"
},
"homepage": "https://github.com/knopkem/dicomweb-pacs#readme",
"dependencies": {
"config": "^3.3.2",
"dicom-data-dictionary": "^0.3.1",
"dicom-dimse-native": "1.2.5",
"dicom-parser": "^1.8.7",
"fastify": "^3.5.1",
"fastify-cors": "^4.1.0",
"fastify-static": "^3.2.1",
"shelljs": "^0.8.4",
"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",
"prettier": "^1.19.1"
}
}