-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.16 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
{
"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'",
"tsc-check": "tsc --build --force",
"build": "curl -o ./public/assets/metadata-schema.svg https://raw.githubusercontent.com/umccr/orcabus/refs/heads/main/lib/workload/stateless/stacks/metadata-manager/docs/schema.drawio.svg && vite build",
"lint": "eslint --ignore-pattern 'deploy/cdk.out'",
"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.2.0",
"@heroicons/react": "^2.2.0",
"@tanstack/react-query": "^5.62.7",
"@xyflow/react": "^12.3.6",
"aws-amplify": "^6.12.1",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"dayjs": "^1.11.13",
"igv": "^3.1.3",
"mime-db": "^1.53.0",
"openapi-fetch": "^0.13.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.1.2",
"react-flatpickr": "^3.10.13",
"react-loading-skeleton": "^3.5.0",
"react-router-dom": "^6.27.0",
"react-toastify": "^11.0.3",
"tailwind-merge": "^2.6.0",
"unsplash-js": "^7.0.19"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@eslint/compat": "^1.2.2",
"@eslint/js": "^9.17.0",
"@storybook/addon-essentials": "^8.4.1",
"@storybook/addon-interactions": "^8.4.1",
"@storybook/addon-links": "^8.4.1",
"@storybook/blocks": "^8.4.1",
"@storybook/react": "^8.4.1",
"@storybook/react-vite": "^8.4.1",
"@storybook/test": "^8.4.1",
"@tailwindcss/forms": "^0.5.9",
"@types/d3": "^7.4.3",
"@types/mime-db": "^1.43.5",
"@types/node": "^22.8.7",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-flatpickr": "^3.8.11",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-storybook": "^0.10.2",
"globals": "^15.11.0",
"openapi-typescript": "^7.4.4",
"postcss": "^8.4.47",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.10",
"rollup-plugin-visualizer": "^5.12.0",
"storybook": "^8.4.1",
"storybook-addon-remix-react-router": "^3.0.1",
"storybook-react-context": "^0.7.0",
"tailwindcss": "^3.4.14",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"vite": "^5.4.10",
"vite-plugin-checker": "^0.8.0"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}