-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.79 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
{
"name": "myhdf5",
"private": true,
"version": "0.0.1",
"description": "Online service to explore and visualise HDF5 files",
"author": "European Synchrotron Radiation Facility",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://gitlab.esrf.fr/ui/myhdf5"
},
"engines": {
"node": "20.x",
"pnpm": "9.x"
},
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "run-p lint:*",
"lint:eslint": "eslint \"**/*.{ts,tsx}\" --max-warnings=0",
"lint:tsc": "tsc",
"lint:prettier": "prettier --cache --check .",
"analyze": "npx source-map-explorer 'build/static/js/*.js'"
},
"dependencies": {
"@h5web/app": "13.0.0",
"@h5web/h5wasm": "13.0.0",
"@react-hookz/web": "15.1.0",
"h5wasm-plugins": "0.0.3",
"immer": "9.0.15",
"normalize.css": "8.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "14.2.1",
"react-error-boundary": "4.0.11",
"react-hook-form": "7.34.2",
"react-icons": "4.4.0",
"react-router-dom": "6.3.0",
"suspend-react": "0.0.8",
"zustand": "4.0.0"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/react": "^18.2.31",
"@types/react-dom": "^18.2.14",
"@vitejs/plugin-react": "4.2.1",
"babel-preset-react-app": "10.0.1",
"eslint": "8.56.0",
"eslint-config-galex": "4.5.2",
"npm-run-all": "4.1.5",
"prettier": "3.1.1",
"typescript": "5.0.4",
"vite": "5.1.6",
"vite-plugin-checker": "0.6.4",
"vite-plugin-eslint": "1.8.1"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"@phenomnomnominal/tsquery>typescript": "5.x",
"eslint-plugin-etc>typescript": "5.x"
}
}
}
}