-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "@hms-dbmi/vizarr",
"version": "0.3.0",
"type": "module",
"dependencies": {
"@hms-dbmi/viv": "^0.16.0",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"deck.gl": "^8.9.34",
"jotai": "^1.0.0",
"just-debounce-it": "^3.1.1",
"p-map": "^5.5.0",
"quick-lru": "^6.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zarrita": "^0.4.0-next.14"
},
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"export": "npm run check && npm run build",
"format": "prettier --write \"{src,types}/**/*.{js,jsx,ts,tsx}\" vite.config.js main.ts",
"lint": "prettier --check \"{src,types}/**/*.{js,jsx,ts,tsx}\" vite.config.js main.ts",
"check": "tsc"
},
"prettier": {
"trailingComma": "es5",
"printWidth": 120,
"semi": true,
"singleQuote": true
},
"devDependencies": {
"@danmarshall/deckgl-typings": "^4.3.10",
"@types/node": "^14.14.5",
"@types/react": "^18.2.51",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.3.1",
"prettier": "^2.2.0",
"typescript": "^5.5.3",
"vite": "^5.3.3"
}
}