-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
107 lines (107 loc) · 3.12 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "yukitanya",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "next build",
"postbuild": "next-sitemap",
"db:push": "dotenv drizzle-kit push:pg",
"db:generate": "dotenv drizzle-kit generate:pg",
"db:migrate": "dotenv tsx ./src/server/db/migrate.ts",
"db:seed": "dotenv tsx ./src/server/db/seed.ts",
"typesense:seed": "dotenv tsx ./src/lib/typesense/seed.ts",
"db:studio": "dotenv drizzle-kit studio",
"dev": "next dev",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier -cw ./src/",
"start": "next start"
},
"dependencies": {
"@dicebear/collection": "^7.1.3",
"@dicebear/core": "^7.1.3",
"@ducanh2912/next-pwa": "^10.2.7",
"@fontsource-variable/rubik": "^5.0.22",
"@fontsource/poppins": "^5.0.14",
"@google/generative-ai": "^0.14.1",
"@hookform/resolvers": "^3.9.0",
"@marsidev/react-turnstile": "^0.7.2",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@t3-oss/env-nextjs": "^0.10.1",
"@tanstack/react-query": "^4.36.1",
"@trpc/client": "^10.45.2",
"@trpc/next": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"@uidotdev/usehooks": "^2.4.1",
"@uploadthing/react": "^6.7.2",
"argon2": "^0.40.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cuid": "^3.0.0",
"dayjs": "^1.11.11",
"drizzle-orm": "^0.32.0",
"drizzle-zod": "^0.5.1",
"indonesian-badwords": "^1.0.1",
"lucide-react": "^0.407.0",
"midtrans-node-client": "^0.0.6",
"next": "^14.2.5",
"next-auth": "^4.24.7",
"next-sitemap": "^4.2.3",
"postgres": "^3.4.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.52.1",
"react-hot-toast": "^2.4.1",
"react-markdown": "^9.0.1",
"react-photo-view": "^1.2.6",
"react-scroll-into-view": "^2.1.3",
"react-show-more-text": "^1.7.1",
"remove-markdown": "^0.5.0",
"sharp": "^0.33.4",
"slugify": "^1.6.6",
"superjson": "^2.2.1",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"ts-pattern": "^5.2.0",
"typesense": "^1.8.2",
"uploadthing": "^6.13.2",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@types/node": "^18.19.39",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-show-more-text": "^1.4.5",
"@types/remove-markdown": "^0.3.4",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"autoprefixer": "^10.4.19",
"dotenv-cli": "^7.4.2",
"drizzle-kit": "^0.23.0",
"eslint": "8.57.0",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "^9.1.0",
"knip": "^5.25.1",
"postcss": "^8.4.39",
"prettier": "^3.3.2",
"tailwindcss": "^3.4.4",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
},
"ct3aMetadata": {
"initVersion": "7.22.0"
}
}