-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
86 lines (86 loc) · 2.6 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
{
"name": "@pheralb/slug",
"version": "3.1.0",
"author": "@pheralb_",
"description": "A URL shortener built with T3 Stack",
"private": true,
"license": "GPL-3.0-only",
"type": "module",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"start": "next start",
"typecheck": "tsc --noEmit",
"postinstall": "pnpm db:generate",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev --name init",
"db:studio": "prisma studio",
"db:push": "turso db shell slug < ./prisma/migrations/20240404040238_init/migration.sql",
"db:pscale:dump": "pscale database dump databasename databasebranch",
"db:turso:dump": "turso db shell slug .dump > dump.sql"
},
"dependencies": {
"@auth/core": "0.30.0",
"@auth/prisma-adapter": "2.0.0",
"@hookform/resolvers": "3.3.4",
"@libsql/client": "0.6.0",
"@prisma/adapter-libsql": "5.13.0",
"@prisma/client": "5.13.0",
"@radix-ui/react-collapsible": "1.0.3",
"@radix-ui/react-dialog": "1.0.5",
"@radix-ui/react-dropdown-menu": "2.0.6",
"@radix-ui/react-label": "2.0.2",
"@radix-ui/react-popover": "1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "1.0.2",
"@radix-ui/react-tabs": "1.0.4",
"@radix-ui/react-tooltip": "1.0.7",
"@t3-oss/env-nextjs": "0.10.1",
"bcryptjs": "2.4.3",
"boring-avatars": "1.10.2",
"cheerio": "1.0.0-rc.12",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"cmdk": "1.0.0",
"date-fns": "3.6.0",
"eslint-config-next": "14.2.3",
"js-confetti": "0.12.0",
"lucide-react": "0.376.0",
"next": "14.2.3",
"next-auth": "5.0.0-beta.17",
"next-themes": "0.3.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.51.3",
"react-qr-code": "2.0.12",
"sonner": "1.4.41",
"tailwind-merge": "2.2.2",
"tailwindcss-animate": "1.0.7",
"use-debounce": "10.0.0",
"zod": "3.22.4"
},
"devDependencies": {
"@tailwindcss/typography": "0.5.12",
"@types/bcryptjs": "2.4.6",
"@types/eslint": "8.56.7",
"@types/node": "20.12.4",
"@types/react": "18.2.74",
"@types/react-dom": "18.2.24",
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "7.5.0",
"@typescript-eslint/parser": "7.5.0",
"autoprefixer": "10.4.19",
"eslint": "8.57.0",
"postcss": "8.4.38",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.13",
"prisma": "5.12.0",
"tailwindcss": "3.4.3",
"typescript": "5.4.3"
},
"ct3aMetadata": {
"initVersion": "7.25.0"
},
"packageManager": "pnpm@8.15.6"
}