-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
111 lines (111 loc) · 3.33 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
{
"name": "insight-viewer-library",
"version": "7.1.1",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"nx": {
"targets": {
"publish": {
"dependsOn": [
{
"projects": "self",
"target": "build"
}
]
}
}
},
"scripts": {
"start": "nx serve insight-viewer-dev",
"release:minor": "nx run workspace:version --commitMessageFormat='chore(release): publish release' --releaseAs=minor",
"release:major": "nx run workspace:version --commitMessageFormat='chore(release): publish release' --releaseAs=major",
"release:patch": "nx run workspace:version --commitMessageFormat='chore(release): publish release' --releaseAs=patch",
"build": "nx run-many --target=build --projects=insight-viewer,annotation,viewport",
"publish": "node tools/scripts/publish.mjs"
},
"private": true,
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "11.10.0",
"@emotion/server": "11.10.0",
"@emotion/styled": "11.10.0",
"@lunit/design-system-logo": "^0.1.4",
"@nrwl/next": "14.5.7",
"consola": "^2.15.3",
"core-js": "^3.6.5",
"cornerstone-core": "^2.6.1",
"cornerstone-wado-image-loader": "^4.1.3",
"cornerstone-web-image-loader": "^2.1.1",
"dicom-parser": "^1.8.13",
"framer-motion": "^11.1.9",
"ky": "^0.30.0",
"msw": "^0.44.2",
"next": "12.3.4",
"point-in-polygon": "^1.1.0",
"polylabel": "^1.1.0",
"prismjs": "^1.28.0",
"re-resizable": "^6.9.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-resize-detector": "^10.0.1",
"regenerator-runtime": "0.13.7",
"rxjs": "^7.5.5",
"tslib": "^2.3.0",
"uid": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@emotion/babel-plugin": "11.10.0",
"@jscutlery/semver": "^2.27.0",
"@nrwl/cli": "14.5.7",
"@nrwl/cypress": "14.5.7",
"@nrwl/eslint-plugin-nx": "14.5.7",
"@nrwl/jest": "14.5.7",
"@nrwl/linter": "14.5.7",
"@nrwl/react": "14.5.7",
"@nrwl/web": "14.5.7",
"@nrwl/workspace": "14.5.7",
"@percy/cli": "^1.9.1",
"@percy/cypress": "^3.1.2",
"@testing-library/react": "^15.0.6",
"@types/cornerstone-core": "^2.3.0",
"@types/jest": "27.4.1",
"@types/node": "18.7.5",
"@types/point-in-polygon": "^1.1.1",
"@types/polylabel": "^1.0.5",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"babel-jest": "27.5.1",
"cypress": "^10.2.0",
"eslint": "~8.15.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^8.0.1",
"jest": "27.5.1",
"lint-staged": "^13.0.3",
"nx": "14.5.7",
"prettier": "^2.6.2",
"react-is": "^18.2.0",
"react-test-renderer": "18.2.0",
"ts-jest": "27.1.4",
"ts-node": "10.9.1",
"typescript": "~4.7.2"
},
"msw": {
"workerDirectory": "apps/insight-viewer-dev/public"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{js,jsx,ts,tsx}": "eslint --fix"
}
}