-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "typesense-airports-search-demo",
"version": "1.0.0",
"private": true,
"license": "Apache-2.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"data:transform": "cd dataset && ./transform.sh",
"data:seed": "npm run data:transform && tsx ./dataset/seed.ts"
},
"dependencies": {
"@phosphor-icons/react": "^2.0.15",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-slider": "^1.2.2",
"@radix-ui/react-switch": "^1.1.2",
"@react-google-maps/api": "^2.20.5",
"csv-parse": "^5.6.0",
"dotenv": "^16.4.7",
"framer-motion": "^10.18.0",
"next": "^14.2.23",
"react": "^18",
"react-dom": "^18",
"react-instantsearch": "^7.13.10",
"react-instantsearch-router-nextjs": "^7.13.10",
"tsx": "^4.19.2",
"typesense": "^1.8.2",
"typesense-instantsearch-adapter": "^2.8.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.20",
"postcss": "^8",
"tailwindcss": "^3.4.17",
"typescript": "^5"
}
}