-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.87 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
{
"name": "fake-store",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome lint ./src",
"lint:fix": "biome lint --write ./src",
"format": "biome format ./src",
"format:fix": "biome format --write ./src",
"biome:ci": "biome check --write ./src --colors=off",
"db:seed": "npx tsx src/lib/db/seed.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@libsql/client": "0.14.0",
"@radix-ui/react-alert-dialog": "1.1.2",
"@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-label": "2.1.0",
"@radix-ui/react-navigation-menu": "1.2.1",
"@radix-ui/react-radio-group": "1.2.1",
"@radix-ui/react-scroll-area": "1.2.0",
"@radix-ui/react-select": "2.1.2",
"@radix-ui/react-separator": "1.1.0",
"@radix-ui/react-slider": "1.2.1",
"@radix-ui/react-slot": "1.1.0",
"@radix-ui/react-tabs": "1.1.1",
"@radix-ui/react-visually-hidden": "1.1.0",
"@tanstack/react-query": "^5.59.15",
"bcryptjs": "2.4.3",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"dotenv": "16.4.5",
"drizzle-orm": "0.33.0",
"jose": "5.9.3",
"lucide-react": "0.445.0",
"next": "15.0.0-canary.152",
"next-themes": "0.3.0",
"react": "19.0.0-rc-7771d3a7-20240827",
"react-dom": "19.0.0-rc-7771d3a7-20240827",
"sonner": "1.5.0",
"tailwind-merge": "2.5.2",
"tailwindcss-animate": "1.0.7",
"vaul": "1.0.0",
"zod": "3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@types/bcryptjs": "2.4.6",
"@types/node": "20",
"@types/react": "18",
"@types/react-dom": "18",
"drizzle-kit": "0.24.2",
"lefthook": "1.7.16",
"postcss": "8",
"stripe": "17.2.0",
"tailwindcss": "3.4.1",
"typescript": "5"
}
}