-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.86 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
{
"name": "orca-ui",
"packageManager": "[email protected]",
"private": true,
"version": "0.0.1",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"start": "bash -c 'source start.sh'",
"dev": "bash -c 'source start.sh'",
"build": "tsc && vite build",
"lint": "eslint",
"prettier-fix": "prettier . --write --ignore-path .gitignore --ignore-path deploy/.gitignore",
"prettier-check": "prettier . --check --ignore-path .gitignore --ignore-path deploy/.gitignore",
"preview": "vite preview",
"precommit": "pre-commit run --all-files",
"audit": "yarn npm audit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@headlessui/react": "^2.1.10",
"@heroicons/react": "^2.1.5",
"@tanstack/react-query": "^5.59.14",
"@xyflow/react": "^12.3.2",
"aws-amplify": "^6.6.4",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"dayjs": "^1.11.13",
"igv": "^3.0.0",
"mime-db": "^1.53.0",
"openapi-fetch": "^0.12.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-flatpickr": "^3.10.13",
"react-loading-skeleton": "^3.5.0",
"react-router-dom": "^6.27.0",
"react-toastify": "^10.0.6",
"tailwind-merge": "^2.5.4",
"unsplash-js": "^7.0.19"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.0",
"@eslint/compat": "^1.1.0",
"@eslint/js": "^9.6.0",
"@storybook/addon-essentials": "^8.1.11",
"@storybook/addon-interactions": "^8.1.11",
"@storybook/addon-links": "^8.1.11",
"@storybook/blocks": "^8.1.11",
"@storybook/react": "^8.1.11",
"@storybook/react-vite": "^8.1.11",
"@storybook/test": "^8.1.11",
"@tailwindcss/forms": "^0.5.7",
"@types/d3": "^7",
"@types/mime-db": "^1",
"@types/node": "^22.7.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-flatpickr": "^3",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.19",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-storybook": "^0.8.0",
"globals": "^15.7.0",
"openapi-typescript": "^7.1.0",
"postcss": "^8.4.39",
"prettier": "^3.3.2",
"rollup-plugin-visualizer": "^5.12.0",
"storybook": "^8.1.11",
"storybook-addon-remix-react-router": "^3.0.0",
"storybook-react-context": "^0.6.0",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.3",
"typescript-eslint": "^7.15.0",
"vite": "^5.3.2",
"vite-plugin-checker": "^0.7.2"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}