-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.47 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"version": "0.3.0",
"license": "GPL-3.0-or-later",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint --ext .js,jsx ./src",
"test-integration": "cypress open",
"test-integration:ci": "cypress run",
"test-components": "cypress open-ct",
"test-components:ci": "cypress run-ct"
},
"dependencies": {
"@chakra-ui/react": "^1.7.2",
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@visx/axis": "^2.4.0",
"@visx/group": "^2.1.0",
"@visx/heatmap": "^2.1.2",
"@visx/hierarchy": "^2.1.2",
"@visx/scale": "^2.2.2",
"@visx/shape": "^2.4.0",
"@visx/text": "^2.3.0",
"@visx/tooltip": "^2.2.2",
"core-js": "^3.19.1",
"d3": "^7.1.1",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"file-saver": "^2.0.5",
"formik": "^2.2.9",
"framer-motion": "^5.3.0",
"iwanthue": "^1.5.1",
"jszip": "^3.7.1",
"ml-distance": "^3.0.0",
"ml-hclust": "^3.1.0",
"ml-matrix": "^6.8.2",
"ml-pca": "^4.0.2",
"mobx": "^6.3.7",
"mobx-react": "^7.2.1",
"nanoid": "^3.1.30",
"plotly.js": "^2.6.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-icons": "^4.3.1",
"react-plotly.js": "^2.5.0",
"react-router-dom": "^6.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/preset-react": "^7.16.0",
"@cypress/code-coverage": "^3.9.11",
"@cypress/react": "^5.10.3",
"@cypress/vite-dev-server": "^2.2.0",
"@cypress/webpack-preprocessor": "^5.10.0",
"@types/d3": "^7.1.0",
"@types/d3-scale-chromatic": "^3.0.0",
"@types/file-saver": "^2.0.4",
"@types/react": "^17.0.35",
"@types/react-dom": "^17.0.11",
"@types/react-plotly.js": "^2.5.0",
"@types/react-router-dom": "^5.3.2",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"chai-exclude": "^2.1.0",
"cypress": "^9.0.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.4.1",
"ts-loader": "^9.2.6",
"type-fest": "^2.5.4",
"typescript": "^4.5.2",
"vite": "^2.6.14",
"vite-plugin-react-svg": "^0.2.0",
"webpack": "^5.64.1"
}
}