-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathpackage.json
48 lines (48 loc) · 1.37 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
{
"name": "awesome-genome-visualization",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write .",
"preview": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"postdeploy": "git push"
},
"dependencies": {
"@tailwindcss/postcss": "^4.0.0-beta.3",
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "^4.0.0-beta.3",
"daisyui": "^5.0.0-alpha.41",
"eslint-plugin-unicorn": "^56.0.0",
"query-string": "^9.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"slugify": "^1.6.6",
"tailwindcss": "^4.0.0-beta.3",
"tsx": "^4.16.2",
"zustand": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.8.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.7",
"gh-pages": "^6.1.1",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"typescript": "^5.2.2",
"typescript-eslint": "^8.1.0",
"vite": "^6.0.0"
}
}