-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
131 lines (131 loc) · 4.76 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "chrisui",
"private": true,
"version": "0.0.0",
"scripts": {
"start": "sirv dist --host --port ${PORT:=8080} --single --etag --quiet",
"__start": "# npm start command is used by s2i in OpenShift as the deployment command",
"dev": "npm run dev:local",
"dev:local": "npm run test:prepare && vite",
"dev:public": "vite -c testing/publicCUBE/vite.config.ts",
"build": "vite build",
"test": "vitest",
"__test:prepare:comment": "# test:prepare runs CUBE locally and loads sample DICOM data into the PACS.",
"test:prepare": "npm run minichris:up && npm run get-dicoms && npm run minichris:wipe",
"test:e2e": "playwright test -c playwright.config.ts",
"test:e2e:local": "env TEST_LOCAL=yes npm run test:e2e",
"test:report": "nyc report --reporter=text",
"test:lcov": "nyc report --reporter=lcov",
"test:ui": "playwright test -c playwright.config.ts --ui",
"test:ui:local": "env TEST_LOCAL=yes npm run test:ui",
"test:codegen": "playwright codegen $(npm run -s get-running-url)",
"test:codegen:mobile": "playwright codegen --device 'Pixel 5' $(npm run -s get-running-url)",
"__minichris:comment": "# The minichris:* commands are for running a ChRIS backend locally",
"minichris:up": "cd testing/miniChRIS && docker compose --profile pacs up -d && cd - && npm run chrisomatic",
"minichris:down": "cd testing/miniChRIS && ./unmake.sh",
"minichris:wipe": "./testing/miniChRIS/scripts/clear_pacsfiles.sh",
"chrisomatic": "testing/chrisomatic.sh",
"get-dicoms": "./testing/getDicoms.mjs",
"list-mrns": "./testing/miniChRIS/scripts/list_mrns.sh",
"lint": "biome lint .",
"fix": "biome check --apply .",
"fix:unsafe": "biome check --apply-unsafe .",
"fmt": "biome format --write .",
"preview": "vite preview",
"__helper_functions": "",
"get-running-url": "./testing/get_running_url.sh",
"print-version": "node printVersion.js"
},
"dependencies": {
"@biomejs/biome": "^1.8.3",
"@cornerstonejs/core": "^1.81.2",
"@cornerstonejs/dicom-image-loader": "^1.81.2",
"@cornerstonejs/streaming-image-volume-loader": "^1.81.2",
"@cornerstonejs/tools": "^1.81.2",
"@fnndsc/chrisapi": "1.15.0",
"@niivue/niivue": "^0.44.2",
"@patternfly/react-catalog-view-extension": "^5.0.0",
"@patternfly/react-charts": "^7.3.0",
"@patternfly/react-core": "^5.3.3",
"@patternfly/react-log-viewer": "^5.2.0",
"@patternfly/react-table": "^5.3.3",
"@react-hook/resize-observer": "^2.0.1",
"@tanstack/react-query": "^5.49.2",
"antd": "^5.19.0",
"axios": "^1.6.5",
"chris-utility": "^1.1.6",
"d3-hierarchy": "^1.1.9",
"d3-selection": "^1.4.2",
"d3-shape": "^2.1.0",
"d3-zoom": "^1.8.3",
"date-fns": "^3.6.0",
"dicom-parser": "^1.8.21",
"email-validator": "^2.0.4",
"fp-ts": "^2.16.2",
"hammerjs": "^2.0.8",
"immer": "^10.0.3",
"keymirror": "^0.1.1",
"lodash": "^4.17.21",
"marked": "^11.1.1",
"micromark": "^4.0.0",
"micromark-extension-gfm": "^3.0.0",
"niivue-react": "github:niivue/niivue-react",
"p-queue": "^8.0.1",
"pako": "^1.0.11",
"preval.macro": "^5.0.0",
"query-string": "^9.0.0",
"rc-tree": "^5.8.0",
"react": "^18.3.1",
"react-activity": "^2.1.3",
"react-bootstrap-typeahead": "^6.2.3",
"react-cookie": "^7.1.4",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-error-boundary": "^4.0.13",
"react-force-graph-2d": "^1.25.3",
"react-json-view": "^1.21.3",
"react-lazylog": "^4.5.3",
"react-redux": "^9.1.0",
"react-router": "^6.21.3",
"react-router-dom": "^6.24.0",
"redux": "^5.0.1",
"redux-saga": "^1.3.0",
"rusha": "^0.8.14",
"sanitize-html": "^2.11.0",
"shlex": "^2.1.2",
"sirv-cli": "^2.0.2",
"typesafe-actions": "^5.1.0",
"typescript": "^5.5.3",
"use-ackee": "^3.0.1",
"use-immer": "^0.10.0",
"uuid": "^9.0.1",
"vite-plugin-babel-macros": "^1.0.6"
},
"devDependencies": {
"@faker-js/faker": "^8.4.0",
"@playwright/test": "^1.41.2",
"@types/d3-hierarchy": "^1.1.7",
"@types/d3-selection": "^1.4.3",
"@types/d3-shape": "^2.0.0",
"@types/d3-zoom": "^1.8.2",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.5",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/redux-logger": "^3.0.11",
"@types/uuid": "^9.0.6",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^2.0.5",
"happy-dom": "^15.0.0",
"lefthook": "^1.6.1",
"nyc": "^17.0.0",
"playwright": "^1.41.2",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"rollup-plugin-node-builtins": "^2.1.2",
"vite": "^5.3.2",
"vite-plugin-istanbul": "^6.0.2",
"vitest": "^2.0.5"
},
"type": "module"
}