-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 4.16 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
{
"name": "pwa-deepsyence",
"version": "0.1.0",
"private": true,
"author": "Thuy Dao",
"homepage": "https://iishiishii.github.io/deepsyence/",
"description": "Deep learning in the browser for medical images",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.6",
"@niivue/niimath-js": "^0.0.1643874671203",
"@niivue/niivue": "^0.38.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^17.0.45",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@uiw/color-convert": "^1.3.3",
"@uiw/react-color": "^1.3.3",
"antd": "^5.10.2",
"comlink": "^4.4.1",
"fs": "^0.0.1-security",
"jimp": "^0.22.12",
"onnxruntime-web": "^1.15.1",
"opencv-web": "^4.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"react-joyride": "^2.6.2",
"react-scripts": "5.0.1",
"typescript": "^4.9.5",
"underscore": "^1.13.6",
"web-vitals": "^2.1.4",
"workbox-background-sync": "^6.6.0",
"workbox-broadcast-update": "^6.6.0",
"workbox-cacheable-response": "^6.6.0",
"workbox-core": "^6.6.0",
"workbox-expiration": "^6.6.0",
"workbox-google-analytics": "^6.6.0",
"workbox-navigation-preload": "^6.6.0",
"workbox-precaching": "^6.6.0",
"workbox-range-requests": "^6.6.0",
"workbox-routing": "^6.6.0",
"workbox-strategies": "^6.6.0",
"workbox-streams": "^6.6.0"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"install:copy": "yarn && copyfiles -f node_modules/onnxruntime-web/dist/*.js -f node_modules/onnxruntime-web/dist/*.wasm public/js",
"test": "react-scripts test",
"eject": "react-scripts eject",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx --cache --fix .",
"eslint:check": "eslint --ext .js,.jsx,.ts,.tsx --cache .",
"eslint:check:typed": "eslint --config .eslintrc.typecheck.js --ext .js,.jsx,.ts,.tsx .",
"eslint:typed": "eslint --config .eslintrc.typecheck.js --cache --ext .js,.jsx,.ts,.tsx --fix .",
"lint": "yarn prettier && yarn eslint && yarn stylelint --allow-empty-input",
"lint:check": "yarn prettier:check && yarn eslint:check && yarn stylelint:check --allow-empty-input",
"prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "prettier --check \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"stylelint": "yarn stylelint:check --fix",
"stylelint:check": "stylelint \"**/*.css\""
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@types/antd": "^1.0.0",
"@types/underscore": "^1.11.6",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"assert": "^2.1.0",
"browserify-fs": "^1.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "npm:[email protected]",
"crypto": "npm:crypto-browserify@^3.12.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"http": "npm:stream-http@^3.2.0",
"https": "npm:https-browserify@^1.0.0",
"path-browserify": "^1.0.1",
"prettier": "^3.0.0",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"react-app-rewired": "^2.2.1",
"stream": "npm:[email protected]",
"stylelint": "^15.10.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-prettier": "^4.0.0",
"util": "npm:util@^0.12.5",
"zlib": "npm:browserify-zlib@^0.2.0"
},
"browser": {
"fs": false,
"path": false,
"os": false
}
}