-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
67 lines (67 loc) · 1.85 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
64
65
66
67
{
"name": "dicomweb-proxy",
"version": "1.11.0",
"description": "A proxy to translate between dicomweb and dimse",
"bin": "./build/app.js",
"scripts": {
"start": "ts-node src/app.ts",
"format": "npx prettier ./src",
"build": "tsc --p ./tsconfig.json",
"pkg:win": "npm run build && npx pkg --targets node16-win-x64 package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/knopkem/dicomweb-proxy.git"
},
"keywords": [
"DICOMWEB",
"PROXY",
"DIMSE",
"DICOM"
],
"author": "Michael Knopke",
"license": "MIT",
"bugs": {
"url": "https://github.com/knopkem/dicomweb-proxy/issues"
},
"homepage": "https://github.com/knopkem/dicomweb-proxy#readme",
"dependencies": {
"@fastify/autoload": "^5.8.0",
"@fastify/cors": "^9.0.0",
"@fastify/helmet": "^11.1.1",
"@fastify/sensible": "^5.5.0",
"@fastify/static": "^6.12.0",
"@iwharris/dicom-data-dictionary": "^1.26.0",
"@wearemothership/socket.io-stream": "^0.9.1",
"close-with-grace": "^1.2.0",
"config": "^3.3.10",
"deepmerge": "^4.3.1",
"dicom-dimse-native": "2.4.6",
"dicom-parser": "^1.8.21",
"fastify": "^4.26.0",
"shelljs": "^0.8.5",
"simple-node-logger": "^21.8.12",
"socket.io-client": "^4.7.4",
"throat": "^6.0.2"
},
"devDependencies": {
"@types/config": "^3.3.3",
"@types/eslint": "^8.56.2",
"@types/node": "^20.11.10",
"@types/prettier": "^2.7.3",
"@types/shelljs": "^0.8.15",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.4",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"pkg": {
"assets": [
"./config/default.json",
"./node_modules/dicom-dimse-native/build/Release/dcmtk.node"
]
}
}