-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 2.68 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
{
"name": "cellpop",
"private": false,
"version": "0.0.6",
"license": "MIT",
"author": "Thomas Smits",
"description": "A React component for visualizing cell populations in two-dimensional array data.",
"homepage": "https://hms-dbmi.github.io/",
"type": "module",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"files": [
"src", "dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hms-dbmi/cellpop.git"
},
"keywords": [
"data visualization",
"react",
"cell populations",
"heatmap"
],
"bugs": {
"url": "https://github.com/hms-dbmi/cellpop/issues"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build-demo": "vite build --mode demo",
"preview": "vite preview",
"preview-demo": "vite preview --mode demo",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "vite build"
},
"devDependencies": {
"@testing-library/react": "^16.1.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"vite": "^6.0.5",
"vite-plugin-dts": "^4.5.0",
"vitest": "^2.1.8",
"zustand": "^4.5.6"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.2.1",
"@mui/material": "^6.2.1",
"@radix-ui/react-context-menu": "^2.2.4",
"@types/d3": "^7.4.3",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@visx/axis": "^3.12.0",
"@visx/bounds": "^3.12.0",
"@visx/curve": "^3.12.0",
"@visx/group": "^3.12.0",
"@visx/heatmap": "^3.12.0",
"@visx/hierarchy": "^3.12.0",
"@visx/legend": "^3.12.0",
"@visx/responsive": "^3.12.0",
"@visx/scale": "^3.12.0",
"@visx/shape": "^3.12.0",
"@visx/stats": "^3.12.0",
"@visx/text": "^3.12.0",
"@visx/tooltip": "^3.12.0",
"@vitessce/zarr": "^3.5.4",
"d3": "^7.9.0",
"d3-scale-chromatic": "^3.1.0",
"proxy-memoize": "^3.0.1",
"zundo": "^2.3.0"
},
"peerDependencies": {
"react": "^18.3.1, ^19.0.0",
"react-dom": "^18.3.1, ^19.0.0",
"zustand": "^4, ^5"
}
}