-
Notifications
You must be signed in to change notification settings - Fork 140
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.2 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
{
"name": "awesome-genome-visualization",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@11.5.2",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint --report-unused-disable-directives --max-warnings 0",
"check-duplicates": "node --experimental-strip-types scripts/check_duplicates.ts",
"readme": "node --experimental-strip-types scripts/gen_readme.ts > README.md && prettier --write README.md",
"format": "prettier --write .",
"preview": "vite preview"
},
"dependencies": {
"query-string": "^9.4.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"slugify": "^1.6.9",
"zustand": "^5.0.14"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"eslint": "^10.5.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"prettier": "^3.8.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0",
"vite": "^8.0.16"
}
}