-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.6 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
{
"name": "gbeta",
"private": true,
"version": "0.1.0-alpha",
"description": "A modern, lightweight genome browser with AI-powered navigation",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:visual": "playwright test tests/e2e/visual/",
"test:visual:update": "playwright test tests/e2e/visual/ --update-snapshots"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@sveltejs/adapter-auto": "^7.0.0",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.49.1",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@tailwindcss/vite": "^4.1.18",
"@testing-library/svelte": "^5.3.1",
"@types/node": "^25.0.6",
"@vitest/coverage-v8": "^4.0.17",
"jsdom": "^27.4.0",
"svelte": "^5.45.6",
"svelte-check": "^4.3.4",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite": "^7.2.6",
"vitest": "^4.0.16"
},
"dependencies": {
"@gmod/bam": "^7.1.15",
"@gmod/bbi": "^8.1.1",
"@gmod/cram": "^7.0.3",
"@gmod/gff": "^2.0.0",
"@gmod/indexedfasta": "^5.0.2",
"@gmod/tabix": "^3.2.2",
"@gmod/twobit": "^6.0.1",
"@gmod/vcf": "^7.0.0"
}
}