-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.14 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
{
"name": "faqs",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev --host 0.0.0.0 --port 3456",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"db:dev": "turso dev --db-file ./.db/local.db --port=3466",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx src/db/migrate.ts",
"db:seed": "tsx src/seed/faqs/index.ts",
"db:studio": "drizzle-kit studio --port=3467"
},
"dependencies": {
"@astrojs/check": "^0.8.2",
"@astrojs/netlify": "^5.4.0",
"@astrojs/react": "^3.6.0",
"@astrojs/tailwind": "^5.1.0",
"@google-cloud/translate": "^8.3.0",
"@hono/zod-validator": "^0.2.2",
"@libsql/client": "^0.7.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@tanstack/react-query": "^5.51.9",
"@tanstack/react-query-devtools": "^5.51.9",
"@tanstack/react-router": "^1.45.6",
"@tanstack/react-table": "^8.19.3",
"@types/js-cookie": "^3.0.6",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@uidotdev/usehooks": "^2.4.1",
"astro": "^4.11.6",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"drizzle-orm": "^0.32.0",
"franc-all": "^7.2.0",
"hono": "^4.5.0",
"js-cookie": "^3.0.5",
"lucide-react": "^0.411.0",
"nanoid": "^5.0.7",
"natural": "^7.1.0",
"openai": "^4.52.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.1",
"tailwind-merge": "^2.4.0",
"tailwindcss": "^3.4.6",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.5.3",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@tanstack/router-devtools": "^1.45.6",
"@tanstack/router-plugin": "^1.45.3",
"@types/gtag.js": "^0.0.20",
"@types/node": "^20.14.11",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.23.0",
"esbuild": "^0.23.0",
"tsx": "^4.16.2",
"vite-plugin-node-polyfills": "^0.22.0"
}
}