-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.36 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
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
{
"name": "ogkify",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev --port 3000",
"dev:clean": "pnpm clean && vite dev --port 3000 --force",
"build": "vite build",
"typecheck": "tsc --noEmit",
"start": "node .output/server/index.mjs",
"start:local": "pnpm dlx dotenv-cli -e .env -- node .output/server/index.mjs",
"serve": "vite preview",
"test": "vitest run",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt --check .",
"format:fix": "oxfmt .",
"check": "oxlint --fix && oxfmt .",
"clean": "rm -rf node_modules/.vite",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:seed": "tsx src/db/seed.ts"
},
"dependencies": {
"@base-ui/react": "^1.4.1",
"@cloudinary/url-gen": "^1.22.0",
"@fontsource-variable/geist": "^5.2.9",
"@hookform/resolvers": "^5.2.2",
"@stripe/react-stripe-js": "^6.3.0",
"@stripe/stripe-js": "^9.5.0",
"@t3-oss/env-core": "^0.13.11",
"@tanstack/react-query": "^5.100.14",
"@tanstack/react-router": "^1.170.8",
"@tanstack/react-router-ssr-query": "^1.167.0",
"@tanstack/react-start": "^1.168.13",
"better-auth": "1.6.11",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"i18next": "^26.2.0",
"lucide-react": "^1.16.0",
"next-themes": "^0.4.6",
"nitro": "3.0.260415-beta",
"pg": "^8.20.0",
"postgres": "^3.4.9",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-hook-form": "^7.76.0",
"react-i18next": "^17.0.8",
"recharts": "^3.8.1",
"shadcn": "^4.7.0",
"sonner": "^2.0.7",
"stripe": "^20.4.1",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@rolldown/plugin-babel": "^0.2.3",
"@tailwindcss/vite": "^4.3.0",
"@types/cloudinary-uploadwidget-browser": "^2.3.5",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"babel-plugin-react-compiler": "1.0.0",
"drizzle-kit": "^0.31.10",
"oxfmt": "^0.45.0",
"oxlint": "^1.65.0",
"tailwindcss": "^4.3.0",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.22.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "^8.0.13",
"vitest": "^4.1.6"
}
}