-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.4 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
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
{
"name": "invaded-map",
"engines": {
"node": "20.x"
},
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write './**/*.{js,ts,jsx,tsx,md,mdx,css,html,yml,yaml,json}' --ignore-path .gitignore",
"algolia:regen": "bun run scripts/algolia-sync.ts",
"db:migrate": "bun run drizzle-kit generate:pg",
"db:check": "bun run drizzle-kit check:pg",
"db:studio": "bun run drizzle-kit studio",
"db:push": "bun run drizzle-kit push:pg",
"db:drop": "bun run drizzle-kit drop"
},
"dependencies": {
"@algolia/requester-fetch": "^4.23.2",
"@auth/drizzle-adapter": "^0.8.2",
"@imbios/next-pwa": "^1.1.1",
"@radix-ui/react-menubar": "^1.0.3",
"@radix-ui/react-scroll-area": "^1.0.4",
"@radix-ui/react-toggle": "^1.0.3",
"@react-google-maps/api": "^2.19.3",
"@tailwindcss/typography": "^0.5.11",
"@types/node": "20.11.15",
"@types/react": "18.2.64",
"@types/react-dom": "18.2.21",
"@vercel/analytics": "^1.2.2",
"@vercel/blob": "^0.22.1",
"@vercel/postgres": "^0.7.2",
"@vercel/speed-insights": "^1.0.10",
"algoliasearch": "^4.23.2",
"autoprefixer": "10.4.18",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"daisyui": "^4.7.2",
"drizzle-orm": "^0.30.6",
"embla-carousel-react": "^8.0.1",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.0-canary.55",
"framer-motion": "^11.0.3",
"next": "14.2.0-canary.55",
"next-auth": "5.0.0-beta.16",
"pg": "^8.11.3",
"pixelarticons": "^1.7.0",
"postcss": "8.4.35",
"postgres": "^3.4.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-geolocated": "^4.1.2",
"react-infinite-scroll-hook": "^4.1.1",
"react-instantsearch": "^7.7.0",
"react-instantsearch-nextjs": "^0.1.14",
"react-modal-sheet": "^2.0.0",
"sharp": "0.32.6",
"tailwind-merge": "^2.2.1",
"tailwindcss": "3.4.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.3.3",
"vaul": "^0.9.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/bun": "^1.0.8",
"@types/invariant": "^2.2.35",
"daisyui-tailwind-scrollbar": "^1.3.3",
"drizzle-kit": "^0.20.14",
"node-html-parser": "^6.1.12",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.4"
}
}