-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.12 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
{
"name": "travelio",
"private": true,
"description": "A reusable tours and experiences booking platform demo built with Astro, React, TypeScript, and Tailwind CSS.",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"build:github-pages": "node ./scripts/build-github-pages.mjs",
"check": "astro check",
"preview": "astro preview",
"astro": "astro"
},
"keywords": [
"astro",
"react",
"tailwindcss",
"typescript",
"travel",
"booking",
"admin-dashboard"
],
"dependencies": {
"@astrojs/react": "^5.0.6",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slider": "^1.3.6",
"@tailwindcss/vite": "^4.3.0",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"astro": "^6.4.2",
"lucide-react": "^1.17.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tailwindcss": "^4.3.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@types/node": "^25.9.3",
"typescript": "^6.0.3"
}
}