-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.72 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
{
"name": "mashx",
"version": "0.1.0",
"description": "Browser-based Mash distance tool for querying preloaded or user-supplied sketch databases",
"type": "module",
"license": "GPL-3.0-only",
"author": "Nabil-Fareed Alikhan <nabil@happykhan.com> (https://www.happykhan.com)",
"homepage": "https://mashx.genomicx.org",
"repository": {
"type": "git",
"url": "https://github.com/genomicx/mashx.git"
},
"bugs": {
"url": "https://github.com/genomicx/mashx/issues"
},
"keywords": [
"mashx",
"mash",
"bioinformatics",
"genomics",
"webassembly"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"check": "vitest run && eslint . && npm run build"
},
"dependencies": {
"@genomicx/ui": "^0.9.0",
"file-saver": "^2.0.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hot-toast": "^2.6.0",
"react-router-dom": "^7.14.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@playwright/test": "^1.59.1",
"@tailwindcss/vite": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/file-saver": "^2.0.7",
"@types/node": "^25.5.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.11.0",
"jsdom": "^24.1.3",
"tailwindcss": "^4.2.2",
"typescript": "~5.6.2",
"typescript-eslint": "^8.11.0",
"vite": "^6.3.0",
"vitest": "^4.0.18"
}
}