-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.75 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.75 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
{
"name": "jellyfin-wrapped",
"license": "MIT",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"validate": "tsx src/scripts/validate-data.ts",
"prepare-husky": "husky",
"prepare": "husky"
},
"dependencies": {
"@jellyfin/sdk": "^0.13.0",
"@nivo/calendar": "^0.99.0",
"@nivo/scatterplot": "^0.99.0",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/themes": "^3.2.1",
"@stitches/react": "^1.2.8",
"@tanstack/react-query": "^5.90.16",
"class-variance-authority": "^0.7.1",
"d3": "^7.9.0",
"date-fns": "^4.1.0",
"date-fns-holiday-us": "^1.1.0",
"framer-motion": "^12.26.1",
"lucide-react": "^0.562.0",
"react": "^19.2.3",
"react-chartjs-2": "^5.3.1",
"react-dom": "^19.2.3",
"react-error-boundary": "^6.0.3",
"react-router-dom": "^7.12.0",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/d3": "^7.4.3",
"@types/node": "^25.0.7",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.53.0",
"vite": "^7.3.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --cache --fix"
],
"*.{json,yml,md}": "prettier --write"
}
}