-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.56 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.56 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "pasiopadelclub",
"description": "Site web du Pasio Padel Club - Réservation de terrains de padel à Bayonne",
"author": "Pasio Padel Club <pasio.padel.club@gmail.com>",
"license": "UNLICENSED",
"keywords": [
"padel",
"bayonne",
"reservation",
"sport"
],
"private": true,
"type": "module",
"packageManager": "npm@11.8.0",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build",
"preview": "vite preview",
"start": "node .output/server/index.mjs",
"test": "vitest run",
"lint": "npx tsc && eslint",
"lint:fix": "npm run lint -- --fix",
"deps": "npx taze@latest -Ilw",
"deps:major": "npx taze@latest major -Ilw",
"prepare": "husky",
"clean": "rm -rf .output dist node_modules/.cache"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@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-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@t3-oss/env-core": "^0.13.10",
"@tanstack/react-query": "5.90.20",
"@tanstack/react-router": "^1.157.16",
"@tanstack/react-router-ssr-query": "^1.157.16",
"@tanstack/react-start": "^1.157.16",
"@tanstack/router-plugin": "^1.157.16",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"embla-carousel-react": "^8.6.0",
"lucide-react": "^0.563.0",
"motion": "^12.29.2",
"nitro": "^3.0.1-alpha.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"schema-dts": "^1.1.5",
"tailwind-merge": "^3.4.0",
"vaul": "^1.1.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.18",
"@tanstack/devtools-vite": "^0.4.1",
"@tanstack/eslint-config": "^0.3.4",
"@tanstack/react-devtools": "^0.9.3",
"@tanstack/react-query-devtools": "^5.91.2",
"@tanstack/react-router-devtools": "^1.157.16",
"@types/node": "^25.0.10",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@viclafouch/eslint-config-viclafouch": "^4.22.1-beta.12",
"@vitejs/plugin-react": "^5.1.2",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^6.0.5",
"vitest": "^4.0.18"
}
}