-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.24 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.24 KB
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
{
"name": "zipglancer",
"type": "module",
"version": "0.1.0",
"description": "Standalone client-side explorer for ZIP and OME-Zarr RFC-9 (OZX) archives on the web",
"keywords": [
"ome-zarr",
"ngff",
"zarr",
"zip",
"ozx",
"neuroglancer",
"scientific imaging"
],
"license": "BSD-3-Clause",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit -p tsconfig.app.json",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --cache --fix --ext .ts,.tsx",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\""
},
"dependencies": {
"@material-tailwind/react": "^3.0.0-beta.24",
"@tanstack/react-query": "^5.90.2",
"@zarrita/storage": "^0.2.0",
"@zip.js/zip.js": "^2.7.57",
"autoprefixer": "^10.4.21",
"fracturedjsonjs": "^5.0.1",
"ome-zarr.js": "^0.0.17",
"postcss": "^8.5.13",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.5.2",
"react-icons": "^5.5.0",
"react-syntax-highlighter": "^16.1.1",
"tailwindcss": "^3.4.17",
"zarrita": "^0.7.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/coverage-v8": "^3.1.3",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"happy-dom": "^20.8.9",
"prettier": "3.8.3",
"typescript": "~5.8.2",
"typescript-eslint": "^8.32.1",
"vite": "^6.0.0",
"vitest": "^3.1.3"
}
}