-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
107 lines (107 loc) · 3.01 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
{
"name": "mri-viewer",
"fullName": "MRI Viewer 2d/3d Dicom and other medical formats web viewer/editor",
"description": "MRI Viewer is unique 2d/3d medical volume data web viewer application. You can inspect data both in 2d and 3d modes.",
"version": "1.0.2",
"author": "EPAM Systems <[email protected]>",
"year": "2023",
"license": "Apache-2.0",
"proxy": "http://localhost:3000",
"licenses": [
{
"type": "Apache-2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0"
}
],
"bugs": {
"url": "https://github.com/epam/mriviewer/issues"
},
"homepage": "https://mriviewer.opensource.epam.com/",
"private": false,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --detectOpenHandles",
"debugtest": "DEBUG=true react-scripts test",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"format": "prettier --write \"src/**/*.{js,jsx,html,css}\"",
"docker": "npm run build && docker run --name mri-viewer -v ./build:/usr/share/nginx/html:ro -d -p 8080:80 nginx",
"prepare": "husky install"
},
"dependencies": {
"@babel/runtime": "^7.23.1",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@mui/material": "^5.4.3",
"@popperjs/core": "^2.9.2",
"@tensorflow/tfjs": "^3.6.0",
"classnames": "^2.3.1",
"daikon": "^1.2.42",
"jszip": "^3.10.1",
"react": "^17.0.2",
"react-color": "^2.19.3",
"react-dnd": "^14.0.2",
"react-dnd-html5-backend": "^14.0.0",
"react-dom": "^17.0.2",
"react-modal": "^3.14.2",
"react-popper": "^2.2.5",
"react-redux": "7.2.4",
"react-scripts": "4.0.3",
"redux": "4.1.0",
"seedrandom": "^2.4.4",
"three": "0.101.1"
},
"devDependencies": {
"@babel/core": "7.14.3",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-runtime": "^7.22.15",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.0",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.2.1",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "7.x.x",
"husky": "^7.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.4.1",
"typescript": "^4.9.5"
},
"jest": {
"resetMocks": false,
"coverageReporters": [
"json",
"lcov",
"text",
"text-summary",
"clover"
],
"collectCoverageFrom": [
"./src/**/*.{js,jsx,ts,tsx}",
"!./node_modules/",
"!./build/"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintConfig": {
"extends": "react-app"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix"
},
"browserslist": [
">0.2%",
"not dead",
"not ie > 1",
"not op_mini all"
]
}