-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.1 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.1 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
67
68
{
"name": "weather-or-not",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"lint": "eslint",
"format": "prettier",
"check": "prettier --write . && eslint --fix"
},
"dependencies": {
"@fontsource-variable/merriweather": "^5.2.6",
"@netlify/vite-plugin-tanstack-start": "^1.2.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@tailwindcss/vite": "^4.2.0",
"@tanstack/query-db-collection": "^1.0.25",
"@tanstack/react-db": "^0.1.72",
"@tanstack/react-devtools": "^0.9.6",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-query-devtools": "^5.91.3",
"@tanstack/react-router": "^1.162.2",
"@tanstack/react-router-devtools": "^1.162.2",
"@tanstack/react-router-ssr-query": "^1.162.2",
"@tanstack/react-start": "^1.162.2",
"@tanstack/router-plugin": "^1.162.2",
"@unpic/react": "^1.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"lucide-react": "^0.575.0",
"luxon": "^3.7.2",
"openmeteo": "^1.2.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"suncalc": "^1.9.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.0",
"tw-animate-css": "^1.4.0",
"vite-tsconfig-paths": "^6.1.1"
},
"devDependencies": {
"@tanstack/devtools-vite": "^0.5.1",
"@tanstack/eslint-config": "^0.4.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/luxon": "^3.7.1",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/suncalc": "^1.9.2",
"@vitejs/plugin-react": "^5.1.4",
"jsdom": "^28.1.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"web-vitals": "^5.1.0"
}
}