-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.82 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.82 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "gatekeep",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:dry": "tsc --noEmit -p ./tsconfig.json",
"start": "next start",
"lint": "next lint",
"db:push": "prisma db push",
"db:gen": "prisma generate",
"db:studio": "prisma studio",
"format": "echo hi",
"format:all": "prettier --config prettier.config.js --write ./src/app/* -u",
"postinstall": "prisma generate",
"prepare": "husky install"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.0",
"@discordjs/rest": "^1.7.1",
"@next-auth/prisma-adapter": "^1.0.0",
"@planetscale/database": "^1.19.0",
"@prisma/client": "^4.16.2",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@stripe/react-stripe-js": "^2.9.0",
"@stripe/stripe-js": "^1.54.2",
"@t3-oss/env-nextjs": "^0.2.2",
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-table": "^8.20.5",
"@trpc/client": "^10.45.2",
"@trpc/next": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"@types/node": "18.16.2",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"autoprefixer": "10.4.14",
"axios": "^1.7.8",
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"cmdk": "^0.2.1",
"discord-api-types": "^0.37.108",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.27.2",
"eslint": "8.39.0",
"eslint-config-next": "^13.5.7",
"jotai": "^2.10.3",
"lucide-react": "^0.183.0",
"moment": "^2.30.1",
"nanoid": "^4.0.2",
"next": "^13.5.7",
"next-auth": "5.0.0-beta.25",
"next-themes": "^0.2.1",
"postcss": "8.4.23",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"react": "18.2.0",
"react-currency-input-field": "^3.9.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.53.2",
"react-moment": "^1.1.3",
"react-spinners": "^0.13.8",
"stripe": "^12.18.0",
"superjson": "^1.13.3",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.2",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.0.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@hookform/resolvers": "^3.9.1",
"@tailwindcss/typography": "^0.5.15",
"drizzle-kit": "^0.19.13",
"eslint-plugin-prettier": "5.0.0",
"husky": "^8.0.3",
"prettier-plugin-tailwindcss": "^0.3.0",
"prisma": "^4.16.2",
"zod-prisma": "^0.5.4"
}
}