-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
108 lines (108 loc) · 3.91 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
102
103
104
105
106
107
108
{
"name": "loculus-website",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"start-server": "astro build && astro preview --port 3000",
"check": "npm run check-types && npm run check-format",
"check-types": "astro check && tsc --noEmit",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"check-format": "eslint --cache \"./**/*.{ts,tsx,astro}\" && prettier --ignore-path \"../.gitignore\" --check \"./**/*.{ts,tsx,json,astro,cjs,mjs,css,scss}\"",
"format": "eslint --cache \"./**/*.{ts,tsx,astro}\" --fix && npm run format-fast",
"format-fast": "prettier --ignore-path \"../.gitignore\" --write \"./**/*.{ts,tsx,json,astro,cjs,mjs,css,scss}\"",
"test": "vitest",
"test-fast": "vitest --bail=1",
"e2e": "npx playwright test",
"e2e:ui": "npx playwright test --ui --headed",
"e2e:headed": "npx playwright test --headed"
},
"dependencies": {
"@astrojs/mdx": "^4.0.7",
"@astrojs/node": "^9.0.1",
"@emotion/react": "^11.14.0",
"@headlessui/react": "^2.2.0",
"@mui/material": "~5.14.20",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@tanstack/react-query": "^4.36.1",
"@zodios/core": "^10.9.6",
"@zodios/react": "^10.4.5",
"astro": "^5.1.8",
"axios": "^1.7.9",
"change-case": "~5.3.0",
"chart.js": "^4.4.7",
"fflate": "^0.8.2",
"flowbite-react": "^0.10.2",
"fzstd": "^0.1.1",
"jsonwebtoken": "^9.0.2",
"jszip": "^3.10.1",
"just-kebab-case": "^4.2.0",
"jwks-rsa": "^3.1.0",
"luxon": "^3.5.0",
"neverthrow": "^8.1.1",
"openid-client": "^5.7.1",
"papaparse": "^5.5.1",
"react": "^18.3.1",
"react-chartjs-2": "^5.3.0",
"react-confirm-alert": "^3.0.6",
"react-dom": "^18.3.1",
"react-toastify": "^11.0.3",
"react-tooltip": "^5.28.0",
"rsuite": "^5.77.0",
"unplugin-icons": "^22.0.0",
"winston": "^3.17.0",
"xlsx": "^0.18.5",
"zod": "^3.24.1"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/react": "^4.1.6",
"@astrojs/tailwind": "^5.1.5",
"@emotion/styled": "^11.14.0",
"@eslint/js": "^9.18.0",
"@iconify/json": "^2.2.298",
"@playwright/test": "^1.49.1",
"@tailwindcss/forms": "^0.5.9",
"@tanstack/eslint-plugin-query": "^5.64.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/lodash": "^4.17.14",
"@types/luxon": "^3.4.2",
"@types/node": "^22.10.7",
"@types/papaparse": "^5.3.15",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"@vitejs/plugin-react": "^4.3.4",
"astro-eslint-parser": "^1.1.0",
"cross-env": "^7.0.3",
"daisyui": "^4.12.23",
"eslint": "^9.17.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"happy-dom": "^16.7.1",
"msw": "^2.7.0",
"prettier": "3.4.2",
"prettier-plugin-astro": "^0.14.1",
"resize-observer-polyfill": "^1.5.1",
"sass": "^1.83.4",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"typescript-eslint": "^8.21.0",
"uuid": "^11.0.5",
"vite": "^6.0.7",
"vitest": "3.0.2"
}
}