-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.28 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.28 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
85
86
87
88
89
{
"name": "dashboards",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "eslint . --fix && prettier --write \"./**/*.{ts,tsx,json,astro,md,mdx,mjs,cjs,js}\"",
"check": "npm run check-format && npm run check-types && npm run check-astro && npm run check-lint",
"check-format": "prettier --check \"**/*.{ts,tsx,json,astro,md,mdx,mjs,cjs}\"",
"check-types": "astro sync && tsc --noEmit",
"check-astro": "astro check",
"check-lint": "eslint .",
"test": "vitest",
"test:node": "vitest --project node",
"test:headed": "vitest --browser.headless false",
"test:browser": "vitest --project browser",
"test:browser:headed": "vitest --project browser --browser.headless false",
"e2e": "playwright test",
"e2e:api": "playwright test --project=api",
"e2e:chromium": "playwright test --project=chromium"
},
"dependencies": {
"@astrojs/node": "^9.5.3",
"@genspectrum/dashboard-components": "^1.17.0",
"@tanstack/react-query": "^5.101.0",
"astro": "^5.18.1",
"axios": "^1.16.1",
"better-auth": "^1.6.14",
"cookie": "^1.1.1",
"dayjs": "^1.11.21",
"katex": "^0.17.0",
"downshift": "^9.3.3",
"patch-package": "^8.0.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-katex": "^3.1.0",
"react-toastify": "^11.1.0",
"uuid": "^14.0.0",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"yaml": "^2.9.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/react": "^4.4.2",
"@eslint/js": "^9.39.2",
"@iconify-json/mdi": "^1.2.3",
"@iconify-json/mdi-light": "^1.2.2",
"@iconify/tailwind4": "^1.2.3",
"@playwright/test": "^1.60.0",
"@tailwindcss/vite": "^4.3.0",
"@tanstack/eslint-plugin-query": "^5.101.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.12.4",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.0.0",
"@types/react-katex": "^3.0.4",
"@types/topojson-specification": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.60.1",
"@vitest/browser": "^3.2.4",
"astro-eslint-parser": "^1.4.0",
"daisyui": "^5.5.20",
"dotenv": "^16.5.0",
"eslint": "^9.39.2",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"msw": "^2.14.6",
"playwright": "^1.55.0",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4.0.9",
"typescript": "^5.9.3",
"typescript-eslint": "^8.60.1",
"vitest": "^3.2.4",
"vitest-browser-react": "^1.0.1",
"zod": "^3.25.74"
}
}